| Current Path : /home/users/unlimited/www/medimeet.codeskitter.site/app/Models/ |
| Current File : /home/users/unlimited/www/medimeet.codeskitter.site/app/Models/TestimonialsModel.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class TestimonialsModel extends Model
{
use HasFactory;
protected $table = 'testimonials';
protected $fillable = [
];
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, string>
*/
protected $hidden = [
];
}