PhyrePanel-mirror/web/app/Filament/Pages/UpdateLog.php
2024-05-15 14:21:12 +03:00

24 lines
430 B
PHP

<?php
namespace App\Filament\Pages;
use Filament\Pages\Page;
class UpdateLog extends Page
{
protected static ?string $navigationIcon = 'heroicon-o-arrow-path';
protected static string $view = 'filament.pages.update-log';
protected static bool $shouldRegisterNavigation = false;
public function getLogUpdate()
{
}
protected function getViewData(): array
{
return [
];
}
}