start copy from cimac web

This commit is contained in:
2026-05-14 08:47:13 +02:00
commit dfc6ed40ae
3624 changed files with 899295 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
namespace Vanguard;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Permission extends Model
{
use HasFactory;
protected $table = 'permissions';
protected $fillable = ['name', 'display_name', 'description'];
protected $casts = [
'removable' => 'boolean'
];
}