Answers for "laravel check how old is a file exists"

2

check if file exists laravel

$file = public_path('storage/images/' . $value)

if(! file_exists($file)){
  return asset('storage/images/default.png');
}
Posted by: Guest on January-03-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language