3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Panel/resources/views/layouts/main.blade.php

33 lines
1.6 KiB
PHP
Raw Permalink Normal View History

2021-06-29 20:05:00 +00:00
@extends('layouts.default')
2021-06-27 19:01:43 +00:00
2021-06-29 20:05:00 +00:00
@section('body')
@component('components.navbar')
@if(env('HOME_PAGE', false))
<li @if(Request::is('/') || Request::is('home*')) class="active" @endif><a href="{{ route('home') }}">Home</a></li>
@endif
<li @if(Request::is('status*') || Request::is('ridecount*')) class="active" @endif><a href="{{ route('status') }}">Attraction Status</a></li>
@if(Route::has('photo'))
<li @if(Request::is('photo*')) class="active" @endif><a href="{{ route('photo') }}">ActionFoto's</a></li>
@endif
<li @if(Request::is('shows*') || Request::is('order*')) class="active" @endif><a href="{{ route('shows') }}">Show</a></li>
@if(Route::has('store'))
<li><a href="{{ route('store') }}">Store</a></li>
@endif
@if(Route::has('openaudiomc'))
<li @if(Request::is('openaudiomc*')) class="active" @endif><a href="{{ route('openaudiomc') }}">OpenAudioMC</a></li>
@endif
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">{{ Auth::user()->username() }}<span class="caret"></span></a><ul class="dropdown-menu">
<li><a href="{{ route('profile.home') }}">Profile</a></li>
@if(Auth::user()->is_admin || Auth::user()->is_root)
<li><a href="{{ route('panel.home') }}">Admin</a></li>
<li role="separator" class="divider"></li>
2021-06-27 19:01:43 +00:00
@endif
2021-06-29 20:05:00 +00:00
<li><a href="{{ route('logout') }}">Logout</a></li>
2021-06-27 19:01:43 +00:00
</ul>
2021-06-29 20:05:00 +00:00
</li>
@endcomponent
@yield('content')
2021-06-27 19:01:43 +00:00
@endsection