관리-도구
편집 파일: Testimonial.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Testimonial extends Model { protected $table = "testimonials"; protected $fillable = [ 'title', 'sub_title', 'content', 'image', 'button_text', 'button_link', 'is_active', 'is_featured' ]; }