2017-11-21 23:12:31 -05:00
|
|
|
@extends('templates.base', [ 'title' => 'Dashboard' ])
|
2018-04-24 20:38:04 -04:00
|
|
|
@set('current_page', preg_replace([ '/^.*\//', '/\/.*/' ], [ '', '' ], Request::url()))
|
2016-01-26 23:20:08 -05:00
|
|
|
|
|
|
|
@section('page-includes')
|
2016-06-01 22:59:52 -04:00
|
|
|
<script src="/js/lib-dashboard.js?version={{ env('CACHE_BUST') }}"></script>
|
|
|
|
<script src="/js/dashboard.js?version={{ env('CACHE_BUST') }}"></script>
|
2018-05-02 14:25:40 -04:00
|
|
|
<link rel="stylesheet" href="/css/lib-dashboard.css?version={{ env('CACHE_BUST') }}" />
|
2016-06-01 22:59:52 -04:00
|
|
|
<link rel="stylesheet" href="/css/dashboard.css?version={{ env('CACHE_BUST') }}" />
|
2016-01-26 23:20:08 -05:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('page-top')
|
2018-04-25 23:27:45 -04:00
|
|
|
<div class="dashboard-background"></div>
|
2018-04-24 20:38:04 -04:00
|
|
|
@include('dashboard.sections.nav')
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('page-bottom')
|
|
|
|
@include('dashboard.sections.footer')
|
2016-01-26 23:20:08 -05:00
|
|
|
@endsection
|