laravel-alt/app/Providers/AppServiceProvider.php
Nasir Hossain Nishad c14d4e4d28 Initial commit
2024-09-23 18:41:36 +06:00

26 lines
414 B
PHP

<?php
namespace App\Providers;
use Brian2694\Toastr\Facades\Toastr;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
Toastr::useVite();
}
}