query('path'); if (!$path) { abort(404); } // Ambil file dari storage $fullPath = storage_path('app/public/' . $path); if (!file_exists($fullPath)) { abort(404); } // Return file sebagai response dengan header yang sesuai return response()->file($fullPath, [ 'Content-Type' => 'application/pdf', 'Content-Disposition' => 'inline; filename="' . basename($path) . '"' ]); } }