Answers for "image exists in laravel"

0

image exists in laravel

if(File::exists(public_path('images/1461177230.jpg'))){    dd('File is exists.');}else{    dd('File is not exists.');}
Posted by: Guest on May-08-2021
0

image exists in laravel

if(file_exists(public_path('images/1461177230.jpg'))){    dd('File is exists.');}else{    dd('File is not exists.');}
Posted by: Guest on May-08-2021

Browse Popular Code Answers by Language