Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用终端填充数据库,但是当我上传图像时出现以下错误
PHP 致命错误:在第 1 行的 Psy Shell 代码中调用未定义的函数 cover_image()
这是我在数据库中插入的
$event=new App\Event $event-->cover_image('/assets/photos/event4.jpg')
尝试更改-->为->,如下所示:
-->
->
$event->cover_image('/assets/photos/event4.jpg')
这可能是导致您的错误的原因。
然后使用数据库中的字符串更新您的刀片文件以显示图像:
<img src="{{ public_path($event->conver_image) }}">
或取决于您的完整路径:
<img src="{{ url('your/path'.$event->conver_image) }}">