Initial commit

This commit is contained in:
René Preuß
2024-06-21 19:30:19 +02:00
commit b4e617ee74
22 changed files with 9112 additions and 0 deletions

View File

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