我已经从here下载了一个模板。
我想设计laravel
刀片页面中的页面,我将css
和js
文件放在公用文件夹中,并将刀片文件链接到它们,并且可以工作。
但是我无法处理图像,此模板中没有用于图像的文件夹,而且我不知道如何将其加载到刀片页面中。
答案 0 :(得分:0)
请在下面的路径中插入并创建链接。 试试这个。
<div class="hidden-xs" style="width:200px; height:auto; margin-left:-10px;">
<img src="{{ asset('uploads/logos/myLogo.png') }}">
</div>
如果不起作用...,请在/.env
中检查您的应用程序网址,然后重新启动应用程序服务器。
APP_URL=http://localhost
编码愉快!!:)
答案 1 :(得分:0)
您可以在以下路径上上传图像
storage/app/public/images
//this way you can use in your blade file
<img src = "{{ asset('/images/YOUR_IMAGE.png') }}" />
但是您需要运行一个命令
php artisan storage:link
它将创建从公共/存储到存储/应用/公共的符号链接