37 lines
756 B
PHP
37 lines
756 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Filament\Facades\Filament;
|
|
use Filament\Navigation\NavigationGroup;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Bootstrap any application services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
Filament::serving(function () {
|
|
Filament::registerNavigationGroups([
|
|
'Treści',
|
|
'Ogłoszenia',
|
|
'Pilotaż "Dobry posiłek"',
|
|
'Projekty',
|
|
'Ogólne',
|
|
'Pozostałe',
|
|
'Ustawienia',
|
|
]);
|
|
});
|
|
}
|
|
}
|