You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

web.php 343B

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