d2d.emegrendeles.hu/app/Filament/Pages/PriceListProcessor.php
2026-03-01 06:50:45 +01:00

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;
}