Proje dosyaları eklendi

This commit is contained in:
2026-08-29 15:53:53 +03:00
commit d3313400ca
440 changed files with 24827 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class RoleAssignmentAudit extends Model
{
protected $guarded = [];
protected function casts(): array { return ['previous_roles'=>'array','new_roles'=>'array','added_roles'=>'array','removed_roles'=>'array']; }
}