how to save information on pdf file in laravel project
$pdf = PDF::loadView('pdf.invoice', $data);
Storage::put('public/pdf/invoice.pdf', $pdf->output());
return $pdf->download('invoice.pdf');
how to save information on pdf file in laravel project
$pdf = PDF::loadView('pdf.invoice', $data);
Storage::put('public/pdf/invoice.pdf', $pdf->output());
return $pdf->download('invoice.pdf');
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');
upload a pdf file laravel
class FileController extends Controller
{
// ...
public function upload(Request $request)
{
$uniqueFileName = uniqid() . $request->get('upload_file')->getClientOriginalName() . '.' . $request->get('upload_file')->getClientOriginalExtension());
$request->get('upload_file')->move(public_path('files') . $uniqueFileName);
return redirect()->back()->with('success', 'File uploaded successfully.');
}
// ...
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us