问题
I want to include a css file in my Laravel blade template.
I've tried:
@include(public_path('css/styles.css'))
But it says view does not exist. It does exist.
How can I include a css file?
Please note, I know this is not the correct way to link css files, but for my use case it is (I'm not building a website).
回答1:
@include
directive allows you to include a Blade view from within another view, like this :
@include('another.view')
Include CSS or JS from master layout
<link href="{{ asset('css/styles.css') }}" rel="stylesheet">
<script type="text/javascript" src="{{ asset('js/scripts.js') }}"></script>
Incude CSS or JS from sub-view, use @push()
.
layout.blade.php
<html>
<head>
<!-- push target to head -->
@stack('styles')
@stack('scripts')
</head>
<body>
<!-- or push target to footer -->
@stack('scripts')
</body>
</html
view.blade.php
@push('styles')
<link href="{{ asset('css/styles.css') }}" rel="stylesheet">
@endpush
@push('scripts')
<script type="text/javascript" src="{{ asset('js/scripts.js') }}"></script>
@endpush
回答2:
if your css file in public/css use :
<link rel="stylesheet" type="text/css" href="{{ asset('css/style.css') }}" >
if your css file in another folder in public use :
<link rel="stylesheet" type="text/css" href="{{ asset('path/css/style.css') }}" >
回答3:
As you said this is a very bad way to do so laravel doesn't have that functionality AFAIK.
However blade can run plain php so you can do like this if you really need to:
<?php include public_path('css/styles.css') ?>
回答4:
<link rel="stylesheet" href="{{ URL::asset('css/styles.css') }}">
It will search for the file in your project public
folder
回答5:
You should try this :
{{ Html::style('css/styles.css') }}
OR
<link href="{{ asset('css/styles.css') }}" rel="stylesheet">
Hope this help for you !!!
回答6:
work with this code
{!! include ('css/app.css') !!}--}}
回答7:
include the css file into your blade template in laravel
- move css file into public->css folder in your laravel project.
- use
so css is applied in a blade.php file.
来源:https://stackoverflow.com/questions/45279612/including-a-css-file-in-a-blade-template