如何在Laravel 5.4中添加外部CSS

时间:2018-07-16 11:52:49

标签: php laravel laravel-5

我是Laravel新手...

web.php

<?php

Route::get('/', function () {
    return view('method1.home');
});

home.blade.php

@extends('dashboard')

dashboard.blade.php

<!DOCTYPE html>
<html class="no-js">
<head>
    @include('includes.head')
</head>

<body>
do something...
</body>

head.blade.php

<link rel="stylesheet" href="{{ URL::asset('front_view/css/main.css') }}">
<link rel="stylesheet" href="{{ URL::asset('front_view/css/shop.css') }}">
<script src="{{ asset('front_view/js/vendor/modernizr-2.6.2.min.js') }}"></script>

路径和文件夹名称正确。

但是CSS无法正常工作。

1 个答案:

答案 0 :(得分:0)

在配置文件夹中打开或创建文件(如果不存在constants.php),然后在该文件中添加此行

define('SITE_PATH', 'http://localhost:8000/'); // write here you site url

然后在视图中使用

<link rel="stylesheet" type="text/css" href="<?php echo SITE_PATH; ?>css/custom.css">

它将在public / css文件夹中搜索custom.css,因此请在public文件夹中创建css文件夹,然后在您的public文件夹中创建custom.css或直接在其中创建