/home2/mshostin/carnival.ms-hostingladz.com/app/Models/Testimonials.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class Testimonials extends Model
{
    use HasFactory;
    protected $table = 'testimonials';

    protected $fillable = [
        'image',
        'cover_image',
        'rating',
        'location',
        'name',
        'description',
        'status',
    ];
}