Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

hjortur17's avatar

Create folder in Storage

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

0 likes
1 reply
MichalOravec's avatar
Level 75
Storage::disk('local')->put("bookings/{$fileName}", $pdf);
1 like

Please or to participate in this conversation.