20 lines
302 B
PHP
20 lines
302 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class PermissionUser extends Model
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* The table associated with the model.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
protected $table = 'permission_user';
|
||
|
|
protected $fillable = [
|
||
|
|
'permission_id',
|
||
|
|
'user_id',
|
||
|
|
];
|
||
|
|
}
|