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
412 B
PHTML
20 lines
412 B
PHTML
2 months ago
|
<?php
|
||
|
|
||
|
namespace App\Filament\Resources\InvoiceResource\Pages;
|
||
|
|
||
|
use App\Filament\Resources\InvoiceResource;
|
||
|
use Filament\Actions;
|
||
|
use Filament\Resources\Pages\ListRecords;
|
||
|
|
||
|
class ListInvoices extends ListRecords
|
||
|
{
|
||
|
protected static string $resource = InvoiceResource::class;
|
||
|
|
||
|
protected function getHeaderActions(): array
|
||
|
{
|
||
|
return [
|
||
|
Actions\CreateAction::make(),
|
||
|
];
|
||
|
}
|
||
|
}
|