First commit

This commit is contained in:
Thuan Bui
2025-03-06 10:14:48 +09:00
commit 154c37bce6
71 changed files with 12852 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace App\Providers;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
Model::unguard();
}
}