25 lines
381 B
PHP
25 lines
381 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Testimonial extends Model
|
|
{
|
|
protected $fillable = [
|
|
'page_id',
|
|
'name',
|
|
'position',
|
|
'content',
|
|
'rating',
|
|
'avatar',
|
|
'is_active',
|
|
'sort_order',
|
|
];
|
|
|
|
public function page()
|
|
{
|
|
return $this->belongsTo(Page::class);
|
|
}
|
|
}
|