mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
32 lines
631 B
PHP
32 lines
631 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Resources\Admin\ActionLog\Pages;
|
|
|
|
use App\Filament\Resources\Base\BaseViewResource;
|
|
use App\Filament\Resources\Admin\ActionLog;
|
|
|
|
/**
|
|
* Class ViewActionLog.
|
|
*/
|
|
class ViewActionLog extends BaseViewResource
|
|
{
|
|
protected static string $resource = ActionLog::class;
|
|
|
|
/**
|
|
* Get the header actions available.
|
|
*
|
|
* @return array
|
|
*
|
|
* @noinspection PhpMissingParentCallCommonInspection
|
|
*/
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return array_merge(
|
|
parent::getHeaderActions(),
|
|
[],
|
|
);
|
|
}
|
|
}
|