Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314
  1. <?php
  2. use App\Http\Controllers\DocumentPrintController;
  3. use Filament\Facades\Filament;
  4. use Illuminate\Support\Facades\Route;
  5. Route::get('/', function () {
  6. return redirect(Filament::getDefaultPanel()->getUrl());
  7. });
  8. Route::middleware(['auth'])->group(function () {
  9. Route::get('documents/{documentType}/{id}/print', [DocumentPrintController::class, 'show'])
  10. ->name('documents.print');
  11. });