This repository has been archived on 2024-05-20. You can view files and clone it, but cannot push or open issues or pull requests.
PriceyBotPanel/app/Providers/AppServiceProvider.php

25 lines
401 B
PHP

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