我在xampp服务器上托管Laravel项目。但现在我使用php artisan serve运行laravel项目。当我运行工匠服务器时,网址为http://localhost:8000。但是我的xampp服务器是http://localhost。网址路径错误。图像没有出现,javascript和jquery对我的项目不起作用。我该如何解决?
答案 0 :(得分:0)
使用这种方式来记录 CSS 和 JS 文件路径
<link rel="stylesheet" href="{{ URL::asset('css/app.css') }}">
和图像路径使用
<img src="{{url('/images'}}">
//here you have to give public path ex: in your public folder has images then use like this