theloftstore/app/Providers/FortifyServiceProvider.php
2025-02-26 08:57:46 +01:00

25 lines
370 B
PHP

<?php
namespace Vanguard\Providers;
use Illuminate\Support\ServiceProvider;
class FortifyServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
}
}