2017-11-21 23:12:31 -05:00
|
|
|
@extends('templates.base', [ 'title' => 'Dashboard' ])
|
2021-07-18 14:35:44 -04:00
|
|
|
@set('current_page', preg_replace([ '/https?:\/\/[^\/]*\/dashboard\/[^\/]*\//', '/\/.*/' ], [ '', '' ], Request::url()))
|
2016-01-26 23:20:08 -05:00
|
|
|
|
|
|
|
@section('page-includes')
|
2020-04-24 22:09:23 -04:00
|
|
|
<script src="/js/lib-dashboard.js?version={{ Version::get() }}"></script>
|
|
|
|
<script src="/js/dashboard.js?version={{ Version::get() }}"></script>
|
|
|
|
<link rel="stylesheet" href="/css/lib-dashboard.css?version={{ Version::get() }}" />
|
|
|
|
<link rel="stylesheet" href="/css/dashboard.css?version={{ Version::get() }}" />
|
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
|