Install dependencies
composer install
Install npm dependencies
npm install
Run the project locally
composer run dev
OR
php artisan serve
npm run dev
Shembull:
http://127.0.0.1:8000
php artisan make:model Permission -m
Shembull:
Permission.php
and2025_07_11_000000_create_permissions_table.php
php artisan make:controller PermissionController --resource
Shembull:
PermissionController.php
php artisan make:request PermissionRequest
Shembull:
PermissionRequest.php
Route::resource('permissions', PermissionController::class);