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