3
0
Fork 0

Lot's of bug fixes

This commit is contained in:
BuildTools 2021-06-27 21:01:43 +02:00
parent ad320963fc
commit 7718ed6c32
196 changed files with 51167 additions and 3010 deletions

View file

@ -1,27 +1,4 @@
@extends('layouts.panel')
@section('navigation')
<ul class="nav navbar-nav">
<li><a href="{{ route('home') }}">Home</a></li>
<li><a href="{{ route('status') }}">Attraction Status</a></li>
@if(Route::has('photo'))
<li><a href="{{ route('photo') }}">ActionFoto's</a></li>
@endif
<li class="active"><a href="{{ route('shows') }}">Show</a></li>
<!-- <li><a href="store.php">Store</a></li> -->
</ul>
<ul class="nav navbar-nav navbar-right">
<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="admin/">Admin</a></li>
<li role="separator" class="divider"></li>
@endif
<li><a href="{{ route('logout') }}">Logout</a></li>
</ul>
</li>
</ul>
@endsection
@extends('layouts.main')
@section('content')
<div class="wrapper">
@ -56,7 +33,7 @@
<option class="disabled" selected>Select Date:</option>
@foreach($dates as $row)
@php($time = strtotime($row['date']))
<option value="{{ $row['date'] }}" free_seats="{{ $row['free_seats'] }}">{{ date('d-m-Y', $time) }} at {{ date('H:m', $time) }}</option>
<option value="{{ $row['date'] }}" free_seats="{{ $row['free_seats'] }}">{{ date('d-m-Y', $time) }} at {{ date('H:i', $time) }}</option>
@endforeach
@else
<option class="disabled" selected>No dates to book</option>