This commit is contained in:
2025-11-03 14:56:02 +05:00
parent 3369e97a3c
commit b728a374a5
7 changed files with 36 additions and 22 deletions

View File

@@ -53,11 +53,6 @@ class LoanOrderResource extends Resource
return LoanOrderForm::configure($schema);
}
public static function infolist(Schema $schema): Schema
{
return LoanOrderInfolist::configure($schema);
}
public static function table(Table $table): Table
{
return LoanOrdersTable::configure($table);
@@ -75,7 +70,6 @@ class LoanOrderResource extends Resource
return [
'index' => ListLoanOrders::route('/'),
'create' => CreateLoanOrder::route('/create'),
'view' => ViewLoanOrder::route('/{record}'),
'edit' => EditLoanOrder::route('/{record}/edit'),
];
}