realcity-group-website/app/Providers/AppServiceProvider.php
2025-05-28 22:38:46 -06:00

28 lines
497 B
PHP

<?php
declare(strict_types=1);
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Koneko\VuexyAdmin\Application\Bootstrap\Manager\KonekoModuleBootManager;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
KonekoModuleBootManager::bootAll();
}
}