first initial

This commit is contained in:
2025-05-27 19:09:17 +07:00
commit 80375d8af3
1587 changed files with 572586 additions and 0 deletions

14
app/Models/Privilege.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Privilege extends Model
{
use HasFactory;
protected $fillable = [
'role_id', 'menu_id', 'create', 'update', 'view', 'delete'
];
}