芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/portpulselogistics.com/Modules/Widget/Entities/Widget.php
'array', 'sort' => 'integer' ]; protected static function booted() { // when creating widget static::creating(function ($widget) { $widget->creator_id = auth()->id(); }); } public function getViewAttribute() { $widget = $this->widget; $widget_class = new $widget(); return $widget_class->view($this->id, $this->data)->render(); } public function getFormAttribute() { $widget = $this->widget; $widget_class = new $widget(); return $widget_class->form($this->data, $this->id)->render(); } /* ========================================= Relations ========================================= */ public function creator() { return $this->belongsTo(User::class, 'creator_id'); } }