23 lines
397 B
PHP
23 lines
397 B
PHP
|
|
<?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',
|
||
|
|
];
|
||
|
|
}
|