mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-19 00:01:00 +08:00
12 lines
163 B
PHP
12 lines
163 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class RolePermission extends NexusModel
|
|
{
|
|
public $timestamps = true;
|
|
|
|
protected $fillable = ['role_id', 'permission_id'];
|
|
|
|
}
|