Level 75
Storage::disk('local')->put("bookings/{$fileName}", $pdf);
1 like
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hi, how can I create the folder /bookings inside the storage folder? I want to store all invoices on the local drive. I have been storing it like this:
Storage::disk('local')->put($fileName, $pdf);
But I would like to add it to a subfolder called /bookings
Storage::disk('local')->put("bookings/{$fileName}", $pdf);
Please or to participate in this conversation.