Initialize laravel app

This commit is contained in:
Frankie B 2023-06-13 21:59:16 +01:00 committed by Frankie B
commit 8af402a9e2
149 changed files with 10967 additions and 1464 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
{
//
}
}