34 lines
739 B
PHP
34 lines
739 B
PHP
<?php
|
|
|
|
namespace App\Filament\Pages;
|
|
|
|
use Filament\Pages\Page;
|
|
|
|
class CurrentPrice extends Page
|
|
{
|
|
protected static string | \BackedEnum | null $navigationIcon = 'heroicon-o-currency-dollar';
|
|
|
|
protected static ?string $title = 'Aktuális ár';
|
|
|
|
protected static ?string $navigationLabel = 'Aktuális ár';
|
|
|
|
protected static string | \UnitEnum | null $navigationGroup = 'Statisztika';
|
|
|
|
public function getHeader(): ?\Illuminate\Contracts\View\View
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public function getFooter(): ?\Illuminate\Contracts\View\View
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public function getBreadcrumbs(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
protected string $view = 'filament.pages.current-price';
|
|
}
|