我有一个简单的问题 - 如何检查Laravel的Blade模板中是否存在文件?我试过了
@if(file_exists('/covers/1.jpg')) ok @endif
Run Code Online (Sandbox Code Playgroud)
但它不起作用(covers目录在/public).我还需要为$game->id函数提供一个variable().Unformtunately,
@if(file_exists('/covers/'.$game->id.'.jpg')) ok @endif
Run Code Online (Sandbox Code Playgroud)
不起作用.