Route::get('/pdf/{file}', function ($file) {
// file path
$path = public_path('storage/file' . '/' . $file);
// header
$header = [
'Content-Type' => 'application/pdf',
'Content-Disposition' => 'inline; filename="' . $file . '"'
];
return response()->file($path, $header);
})->name('pdf');