aboutsummaryrefslogtreecommitdiff
path: root/resources/views/pages/reservations.blade.php
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2020-11-01 17:03:12 +0100
committerMateja <mail@matejamaric.com>2020-11-01 17:03:12 +0100
commit0ce5bbcc443b9da12e5233a481f2ef15017ee891 (patch)
treeaebdd93295c71ba576585940a42b8fb930328fd8 /resources/views/pages/reservations.blade.php
parent3e5dc09d0010078568f8590daef1f95722a4dd05 (diff)
downloadyota-laravel-0ce5bbcc443b9da12e5233a481f2ef15017ee891.tar.gz
yota-laravel-0ce5bbcc443b9da12e5233a481f2ef15017ee891.zip
Callsign adding finished.
Diffstat (limited to 'resources/views/pages/reservations.blade.php')
-rw-r--r--resources/views/pages/reservations.blade.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/resources/views/pages/reservations.blade.php b/resources/views/pages/reservations.blade.php
index 9a27ee7..0d74ef3 100644
--- a/resources/views/pages/reservations.blade.php
+++ b/resources/views/pages/reservations.blade.php
@@ -5,6 +5,7 @@
@section('navbar', View::make('inc.special_navbar'))
@section('content')
+@if (count($data) > 0)
<div class="table-responsive">
<table class="table table-striped table-bordered" style="white-space:nowrap;"><!-- table-hover -->
<thead class="thead-dark">
@@ -49,4 +50,9 @@
</tbody>
</table>
</div>
+@else
+<div class="text-center">
+ <strong>There are currently no reservations.</strong>
+</div>
+@endif
@endsection()