관리-도구
편집 파일: Testimonial.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Testimonial extends Model { protected $fillable = [ 'name', 'designation', 'comment', 'image', ]; protected $table = 'testimonial'; }