Files

29 lines
550 B
PHP
Raw Permalink Normal View History

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