Files

23 lines
397 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 ReadyToJoinUs extends Model
{
protected $table = 'ready_to_join_us';
public const TABLE_NAME = 'ready_to_join_us';
/**
* The attributes that are mass assignable.
*/
protected $fillable = [
'restaurant_id',
'title',
'description',
'icon',
];
}