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
You can try this code:-
use Illuminate\Support\Facades\File; if (! File::exists("your-path")) { File::makeDirectory("your-path"); }