You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ListInvoices.php 412B

12345678910111213141516171819
  1. <?php
  2. namespace App\Filament\Resources\InvoiceResource\Pages;
  3. use App\Filament\Resources\InvoiceResource;
  4. use Filament\Pages\Actions;
  5. use Filament\Resources\Pages\ListRecords;
  6. class ListInvoices extends ListRecords
  7. {
  8. protected static string $resource = InvoiceResource::class;
  9. protected function getActions(): array
  10. {
  11. return [
  12. Actions\CreateAction::make(),
  13. ];
  14. }
  15. }