Site icon Student Project Guidance & Development

How to check if a file exists in Laravel

public function fileexists($filename)
{
    if (file_exists($filename)) 
    {
        return $filename;
    } 
    else 
    {
        return 'img/defaultimg.png';
    }     
}
Exit mobile version