Files
kulakpos_web/public/restaurant/Modules/Frontend/app/Models/WhyChooseUs.php

23 lines
389 B
PHP
Raw Normal View History

2026-03-15 17:08:23 +07:00
<?php
namespace Modules\Frontend\Models;
use Illuminate\Database\Eloquent\Model;
class WhyChooseUs extends Model
{
protected $table = 'why_choose_us';
public const TABLE_NAME = 'why_choose_us';
/**
* The attributes that are mass assignable.
*/
protected $fillable = [
'restaurant_id',
'title',
'description',
'icon',
];
}