Upgrade: Laravel 11, consolidación modelos App\Models\

- Actualización a Laravel 11.47.0
- Migración de modelos a namespace App\Models\
- Actualización de todos los controladores
- Actualización de configuraciones
- Documentación README.md

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-17 22:07:34 +00:00
parent 2751809502
commit 46469deaa8
241 changed files with 2797 additions and 1720 deletions

0
app/Providers/AppServiceProvider.php Normal file → Executable file
View File

8
app/Providers/AuthServiceProvider.php Normal file → Executable file
View File

@@ -2,7 +2,6 @@
namespace App\Providers;
use Laravel\Passport\Passport;
use Illuminate\Support\Facades\Gate;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
@@ -22,11 +21,8 @@ class AuthServiceProvider extends ServiceProvider
*
* @return void
*/
public function boot()
public function boot(): void
{
$this->registerPolicies();
Passport::routes();
//
// Passport routes are now registered automatically in Laravel Passport 12
}
}

0
app/Providers/BroadcastServiceProvider.php Normal file → Executable file
View File

0
app/Providers/EventServiceProvider.php Normal file → Executable file
View File

0
app/Providers/RouteServiceProvider.php Normal file → Executable file
View File