将swiper js库直接插入刀片模板laravel 5.6中

时间:2018-06-11 16:24:48

标签: laravel-5

我是较新的使用laravel,我需要一些帮助。

我正在尝试从swiper插件中包含js库,但不是这样:

<script 
src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.3.0/js/swiper.min.js"> 
</script> (like this is working)
or like this:
<script type="text/javascript" src="{{ secure_asset('js/swiper.js') }}"> 
</script> 
(which is also working)

我想将js库代码直接放在html代码中。 我已经为jquery和bootstrap工作了,并且工作正常,但是对于swiper和字体很棒的工作不起作用。

我尝试了很多东西:首先把代码放在最后,删除jquery和bootstrap库。

收到的错误是:

Use of undefined constant index - assumed 'index' (View: 
/home/newsite/public_html/laravel/resources/views/layouts/footer.blade.php) 
(View: 
/home/newsite/public_html/laravel/resources/views/layouts/footer.blade.php)

我是如何为jquery做的并且正在工作:

app.blade.php

<html>
    <head>
    ---------
    </head>
    <body>
     ---------
        <script> @yield('footer') </script>
    </body>
</html>

并在footer.blade.php内部

@section('footer')

--- here js library code --- 

@endsection

0 个答案:

没有答案