duanhuang1699 2015-07-30 14:17
浏览 162
已采纳

Laravel 5:添加自定义样式/脚本

This is kind of a stupid question, and I've looked around for similar answers and found some, however they are a bit more specific than what I am asking.

Say I want to include a custom styles.css or scripts.js file, would I just create a css/js folder in resources/views folder, and then call to them in my blade.php files like I would normally do in an HTML file when not using Laravel?

Example: <link type="text/css" rel="stylesheet" href="css/styles.css">

Or is there a different approach to this in Laravel?

  • 写回答

2条回答

  • dsg56465 2015-07-30 14:31
    关注

    Put your css files into the public folder like public/css/styles.css

    Use the asset() function to add css, javascript or images into your blade template.

    For Style Sheets

    <link href="{{ asset('css/styles.css') }}" rel="stylesheet" type="text/css" >
    

    or

    <link href="{{ URL::asset('css/styles.css') }}" rel="stylesheet" type="text/css" >
    

    For Javascript

    <script type="text/javascript" src="{{ asset('js/scripts.js') }}"></script>
    

    or

     <script type="text/javascript" src="{{ URL::asset('js/scripts.js') }}"></script>
    

    You may also be interested to have a look at Laravel's Elixir to process your styles and javascript.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 vue3加ant-design-vue无法渲染出页面
  • ¥15 matlab(相关搜索:紧聚焦)
  • ¥15 基于51单片机的厨房煤气泄露检测报警系统设计
  • ¥15 路易威登官网 里边的参数逆向
  • ¥15 Arduino无法同时连接多个hx711模块,如何解决?
  • ¥50 需求一个up主付费课程
  • ¥20 模型在y分布之外的数据上预测能力不好如何解决
  • ¥15 processing提取音乐节奏
  • ¥15 gg加速器加速游戏时,提示不是x86架构
  • ¥15 python按要求编写程序