mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 07:30:25 +00:00
58 lines
1.6 KiB
PHP
58 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Events\ModelDomainCreated;
|
|
use App\Events\ModelDomainDeleting;
|
|
use App\Events\ModelHostingSubscriptionCreated;
|
|
use App\Events\ModelHostingSubscriptionDeleting;
|
|
use App\Listeners\ModelDomainCreatedListener;
|
|
use App\Listeners\ModelDomainDeletingListener;
|
|
use App\Listeners\ModelHostingSubscriptionCreatingListener;
|
|
use App\Listeners\ModelHostingSubscriptionDeletingListener;
|
|
use App\Policies\CustomerPolicy;
|
|
use BladeUI\Icons\Factory;
|
|
use Filament\Facades\Filament;
|
|
use Illuminate\Support\Facades\App;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Illuminate\Support\Facades\Gate;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
// Register Phyre Icons set
|
|
$this->callAfterResolving(Factory::class, function (Factory $factory) {
|
|
$factory->add('phyre', [
|
|
'path' => __DIR__ . '/../../resources/phyre-svg',
|
|
'prefix' => 'phyre',
|
|
]);
|
|
});
|
|
|
|
App::singleton('file_manager_api', function () {
|
|
return new \App\FileManagerApi();
|
|
});
|
|
|
|
App::singleton('virtualHostManager', function () {
|
|
return new \App\VirtualHosts\ApacheVirtualHostManager();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Bootstrap any application services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
Filament::serving(function () {
|
|
// Using Vite
|
|
Filament::registerViteTheme('resources/css/app.css');
|
|
});
|
|
|
|
Gate::define('delete-customer', [CustomerPolicy::class, 'delete']);
|
|
|
|
}
|
|
}
|