- Added getTabs method to ListCardPinOrders, ListLoanOrders, and ListLoanOrderMobiles pages to display order statuses for system users. - Implemented default sorting by 'created_at' in LoanOrdersTable and LoanOrderMobilesTable for improved data organization. - Updated ManageCards page to ensure proper type declaration for getTitle method.
14 lines
424 B
PHP
14 lines
424 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::redirect('/', filament_path());
|
|
|
|
Route::get('test', function () {
|
|
return 'done';
|
|
});
|
|
// Route::middleware(['auth'])->group(function () {
|
|
// Route::get('password-change', [PasswordChangeController::class, 'index'])->name('password-change');
|
|
// Route::post('password-change', [PasswordChangeController::class, 'update'])->name('password-change.update');
|
|
// });
|