diff options
Diffstat (limited to 'resources/views/pages/reservations.blade.php')
-rw-r--r-- | resources/views/pages/reservations.blade.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/resources/views/pages/reservations.blade.php b/resources/views/pages/reservations.blade.php new file mode 100644 index 0000000..3901ed0 --- /dev/null +++ b/resources/views/pages/reservations.blade.php @@ -0,0 +1,13 @@ +@extends('layouts.app') + +@section('content') +<div class="table-responsive"> + <table class="table table-striped table-bordered"><!-- table-hover --> + <thead class="thead-dark"> + <tr><th>ID</th><th>Approved</th><th>Operator Callsign</th><th>QSO</th><th>From</th><th>To</th><th>Frequencies</th><th>Modes</th><th>Special Callsign</th><th>Operator Name</th><th>Operator Email</th><th>Operator Phone</th><th>Actions</th></tr> + </thead> + <tbody> + </tbody> + </table> +</div> +@endsection() |