Base Laravel

This commit is contained in:
Claude EZSCALE
2026-02-09 01:20:27 -05:00
parent 052f651ee1
commit 133bc56bfb
62 changed files with 14795 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
}
}