mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-22 07:54:11 -05:00
Use Version::get() for the traditional bootstrap public template
This commit is contained in:
parent
d89a9a4df5
commit
dbc79e6617
1 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
||||||
@extends('templates.base')
|
@extends('templates.base')
|
||||||
|
|
||||||
@section('page-includes')
|
@section('page-includes')
|
||||||
<script src="/js/lib.js?version={{ env('CACHE_BUST') }}"></script>
|
<script src="/js/lib.js?version={{ Version::get() }}"></script>
|
||||||
<script src="/js/app.js?version={{ env('CACHE_BUST') }}"></script>
|
<script src="/js/app.js?version={{ Version::get() }}"></script>
|
||||||
<link rel="stylesheet" href="/css/app.css?version={{ env('CACHE_BUST') }}" />
|
<link rel="stylesheet" href="/css/app.css?version={{ Version::get() }}" />
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section('page-content')
|
@section('page-content')
|
||||||
|
|
Loading…
Reference in a new issue