10 lines
446 B
PHP
10 lines
446 B
PHP
@if(!defined('LOAD_SLICKJS'))
|
|
@push('css')
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('/assets/plugins/slick/slick.css') }}"/>
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('/assets/plugins/slick/slick-theme.css') }}"/>
|
|
@endpush
|
|
@push('scripts')
|
|
<script type="text/javascript" src="{{ asset('/assets/plugins/slick/slick.min.js') }}"></script>
|
|
@endpush
|
|
@php(define('LOAD_SLICKJS', true))
|
|
@endif |