I have problem let user create folder in laravel 4 through ajax request > route > controller@method. I did test ajax success request to the url call right method. Wh
Thanks to The Alpha. Your answer helped me, here is a laravel 5 way to do it for those who use the later version :
Storage::disk('local')->makeDirectory('path/to');
This will create a directory in storage/app/path/to
storage/app/path/to
Retrieve the directory you just created with :
storage_path('app/path/to')