관리-도구
편집 파일: Gallery.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Gallery extends Model { protected $table = 'gallery'; protected $fillable = [ 'media_type', 'gallery', 'video_link', ]; public $timestamps = true; }