- Added "halaxa/json-machine" dependency to composer.json. - Updated content hash in composer.lock to reflect changes. - Improved SpatieMediaLibraryFileEntry component documentation. - Expanded FillJsonData seeder to include new migrators for card types, orders, and pin orders. - Updated Tailwind CSS version in app.css. - Refactored various JavaScript components for better performance and readability. - Added a test route in web.php for debugging purpose
15 lines
425 B
PHP
15 lines
425 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');
|
|
// });
|