芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/bit-alphas-ltd.com/user/project/app/Models/Admin.php
id == 1) { return true; } return false; } public function staff_role(){ return $this->belongsTo('App\Models\Role','role_id')->withDefault(); } public function role() { return $this->belongsTo('App\Models\Role')->withDefault(function ($data) { foreach($data->getFillable() as $dt){ $data[$dt] = __('Deleted'); } }); } public function sectionCheck($value){ $sections = explode(" , ", $this->role->section); if (in_array($value, $sections)){ return true; }else{ return false; } } }