Complete Phase 1: MVC, DB migrations, Auth, RBAC, Security, and Views

This commit is contained in:
Hamza-Ayed
2026-06-05 00:56:41 +03:00
parent 7ffbc8bafa
commit bed7624ae9
51 changed files with 3295 additions and 0 deletions

8
app/Models/User.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
namespace App\Models;
class User extends Model
{
protected string $table = 'users';
}