mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 15:40:25 +00:00
24 lines
430 B
PHP
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 [
|
|
|
|
];
|
|
}
|
|
}
|