|
...
|
...
|
@@ -2,14 +2,11 @@ |
|
|
|
|
|
|
|
namespace App\Http\Logic\Aside\Project;
|
|
|
|
|
|
|
|
|
|
|
|
use Illuminate\Support\Arr as SupArr;
|
|
|
|
use App\Helper\Arr;
|
|
|
|
use App\Helper\Common;
|
|
|
|
use App\Helper\FormGlobalsoApi;
|
|
|
|
use App\Http\Logic\Aside\BaseLogic;
|
|
|
|
use App\Http\Logic\Aside\Manage\ManageLogic;
|
|
|
|
use App\Models\ASide\APublicModel;
|
|
|
|
use App\Models\Blog\Blog;
|
|
|
|
use App\Models\Channel\Channel;
|
|
|
|
use App\Models\Channel\User;
|
|
|
|
use App\Models\Channel\Zone;
|
|
...
|
...
|
@@ -128,7 +125,7 @@ class ProjectLogic extends BaseLogic |
|
|
|
}
|
|
|
|
$param['confirm_file'] = Arr::a2s($param['confirm_file']);
|
|
|
|
}
|
|
|
|
$filteredData = array_only($param, $this->model->fillable);
|
|
|
|
$filteredData = SupArr::only($param, $this->model->fillable);
|
|
|
|
$this->model->edit($filteredData,['id'=>$param['id']]);
|
|
|
|
Common::del_user_cache($this->model->getTable(),$param['id']);
|
|
|
|
return $this->success();
|
...
|
...
|
|