- Adjusted indentation in ActivityLogModule methods for consistency. - Simplified ActivityLogRepository class by removing unnecessary lines. - Updated FillJsonData seeder to streamline the run method. - Modified various Migrator classes to change JSON data paths for testing and added sequence reset statements for better database integrity.
18 lines
508 B
PHP
18 lines
508 B
PHP
<?php
|
|
|
|
use Database\Seeders\Migrators\MediaMigrator;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::redirect('/', filament_path());
|
|
|
|
Route::get('test', function () {
|
|
|
|
(new MediaMigrator)->migrate();
|
|
|
|
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');
|
|
// });
|