create auto image path folder in laravel 8

Solutions on MaxInterview for create auto image path folder in laravel 8 by the best coders in the world

showing results for - "create auto image path folder in laravel 8"
Lulu
02 Mar 2017
1if (! File::exists("uploads/properties")) {
2    File::makeDirectory("uploads/properties");
3}
4if (! File::exists(public_path()."uploads/properties")) {
5    File::makeDirectory(public_path()."uploads/properties");
6}