24 lines
410 B
PHP
24 lines
410 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class IamPrincipalRestaurantRole extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $table = 'iam_principal_restaurant_role';
|
|
|
|
protected $fillable = [
|
|
'principal_xid',
|
|
'restaurant_xid',
|
|
'role',
|
|
'created_by',
|
|
'modified_by',
|
|
];
|
|
|
|
|
|
|
|
}
|