Answers for "assert file exists laravel"

PHP
1

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
0

assert file exists laravel

// From https://laravel-news.com/testing-file-uploads-with-laravel

Storage::disk('avatars')->assertExists('avatar.jpg');
Posted by: Guest on May-21-2021

Browse Popular Code Answers by Language