You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
431 B
PHTML
20 lines
431 B
PHTML
2 weeks ago
|
<?php
|
||
|
|
||
|
namespace App\Filament\Resources\InvoiceReportResource\Pages;
|
||
|
|
||
|
use App\Filament\Resources\InvoiceReportResource;
|
||
|
use Filament\Resources\Pages\ViewRecord;
|
||
|
|
||
|
class ViewInvoiceReport extends ViewRecord
|
||
|
{
|
||
|
protected static string $resource = InvoiceReportResource::class;
|
||
|
|
||
|
protected static ?string $title = 'View Invoice Report';
|
||
|
|
||
|
protected function getHeaderActions(): array
|
||
|
{
|
||
|
return [
|
||
|
];
|
||
|
}
|
||
|
}
|