// +---------------------------------------------------------------------- namespace App\Models; /** * 商家店铺管理-模型 * @author laravel开发员 * @since 2020/11/11 * @package App\Models */ class StoreModel extends BaseModel { // 设置数据表 protected $table = 'stores'; // 封面图 public function getLogoAttribute($value) { $thumb = $value? get_image_url($value) : get_image_url('/images/store/logo.jpeg'); return $thumb; } public function setLogoAttribute($value) { return $value? get_image_path($value) : ''; } }