Answers for "open (show) pdf file from server in laravel"

PHP
0

display pdf file in laravel

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');
Posted by: Guest on October-19-2021

Browse Popular Code Answers by Language