23 lines
411 B
PHP
23 lines
411 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class CustomerFavouriteRestaurant extends Model
|
|
{
|
|
protected $table = 'customer_favourite_restaurants';
|
|
|
|
use HasFactory;
|
|
|
|
|
|
protected $fillable = [
|
|
'principal_xid',
|
|
'restaurant_xid',
|
|
'created_by',
|
|
'modified_by',
|
|
'deleted_at',
|
|
];
|
|
}
|