관리-도구
편집 파일: AboutGallery.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class AboutGallery extends Model { use HasFactory; protected $table = 'about_gallery'; protected $fillable = [ 'title', 'image', ]; }