Files
tbbank-new/app/Filament/Clusters/Loans/LoanOrders/Pages/ListLoanOrders.php
2025-10-22 20:08:22 +05:00

20 lines
439 B
PHP

<?php
namespace App\Filament\Clusters\Loans\LoanOrders\Pages;
use App\Filament\Clusters\Loans\LoanOrders\LoanOrderResource;
use Filament\Actions\CreateAction;
use Filament\Resources\Pages\ListRecords;
class ListLoanOrders extends ListRecords
{
protected static string $resource = LoanOrderResource::class;
protected function getHeaderActions(): array
{
return [
CreateAction::make(),
];
}
}