관리-도구
편집 파일: StoreBanner.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class StoreBanner extends Model { protected $fillable = ['title','position','link','image','active']; protected $casts = ['active' => 'boolean']; }