name('pdf.view'); // Route untuk mengakses file PDF langsung Route::get('/storage/berkas/{path}', function ($path) { $fullPath = storage_path('app/berkas/' . $path); if (!file_exists($fullPath)) { abort(404); } return response()->file($fullPath, [ 'Content-Type' => 'application/pdf', 'Content-Disposition' => 'inline; filename="' . basename($path) . '"' ]); })->where('path', '.*');