11 lines
262 B
PHP
11 lines
262 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\FileController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('/', function () {
|
|
return view('welcome');
|
|
});
|
|
|
|
Route::get('/documents/{applicationId}/download', [FileController::class, 'show'])->name('documents.download');
|