21 lines
512 B
PHP
21 lines
512 B
PHP
<?php
|
|
|
|
namespace App\Filament\Pages;
|
|
|
|
use Filament\Pages\Page;
|
|
|
|
use Illuminate\Contracts\Support\Htmlable;
|
|
|
|
class PriceListProcessor extends Page
|
|
{
|
|
protected static string | \BackedEnum | null $navigationIcon = 'heroicon-o-document-text';
|
|
|
|
protected string $view = 'filament.pages.price-list-processor';
|
|
|
|
protected static ?string $title = 'Árlista feldolgozó';
|
|
|
|
protected static ?string $navigationLabel = 'Árlista feldolgozó';
|
|
|
|
protected static bool $shouldRegisterNavigation = false;
|
|
}
|