관리-도구
편집 파일: Galleries.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Galleries extends Model { /** * 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 function artist() { return $this->hasOne('App\Artist', 'id', 'artist_id'); } }