관리-도구
편집 파일: Galleries.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; use Laraveldaily\Quickadmin\Observers\UserActionsObserver; use Illuminate\Database\Eloquent\SoftDeletes; class Galleries extends Model { use SoftDeletes; /** * The attributes that should be mutated to dates. * * @var array */ protected $dates = ['deleted_at']; protected $table = 'galleries'; protected $fillable = [ 'name', 'picture', 'artist_id', 'type' ]; public static function boot() { parent::boot(); Galleries::observe(new UserActionsObserver); } public function artist() { return $this->hasOne('App\Artist', 'id', 'artist_id'); } }