cresate role basic tables

This commit is contained in:
xiaomlove
2022-08-17 16:01:55 +08:00
parent 78a25071d1
commit c7ac4ba41e
20 changed files with 492 additions and 7 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
namespace App\Models;
class UserPermission extends NexusModel
{
public $timestamps = true;
protected $fillable = ['uid', 'permission_id'];
}