diff options
author | Mateja <mail@matejamaric.com> | 2020-10-31 15:14:34 +0100 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-10-31 15:14:34 +0100 |
commit | 07349ee4ceb47b60ff2a30962e2890e56eab2f49 (patch) | |
tree | 898b6e7152b05c1f86ecb1f2c8e0729c8526ae37 /resources/views/pages/activities.blade.php | |
parent | 16eb120253efa86e7c5fa548e03de321a5b54a1b (diff) | |
download | yota-laravel-07349ee4ceb47b60ff2a30962e2890e56eab2f49.tar.gz yota-laravel-07349ee4ceb47b60ff2a30962e2890e56eab2f49.zip |
Show reservations...
Diffstat (limited to 'resources/views/pages/activities.blade.php')
-rw-r--r-- | resources/views/pages/activities.blade.php | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/resources/views/pages/activities.blade.php b/resources/views/pages/activities.blade.php index e15266f..889453c 100644 --- a/resources/views/pages/activities.blade.php +++ b/resources/views/pages/activities.blade.php @@ -5,13 +5,34 @@ @section('navbar', View::make('inc.special_navbar')) @section('content') -@if (1==2) +@if (isset($activities)) <div class="table-responsive"> <table class="table table-striped table-bordered"><!-- table-hover --> <thead class="thead-dark"> <tr><th>Operator</th><th>From</th><th>To</th><th>Special Callsign</th><th>Frequencies</th><th>QSO</th></tr> </thead> <tbody> + @foreach ($activities as $row) +{{--'approved'--}} +{{--'specialCall'--}} +{{--'fromTime'--}} +{{--'toTime'--}} +{{--'frequencies'--}} +{{--'modes'--}} +{{--'operatorCall'--}} +{{--'operatorName'--}} +{{--'operatorEmail'--}} +{{--'operatorPhone'--}} +{{--'qso'--}} + <tr> + <td>{{ $row->operatorCall }}</td> + <td>{{ $row->fromTime }}</td> + <td>{{ $row->toTime }}</td> + <td>{{ $row->specialCall }}</td> + <td>{{ $row->frequencies }}</td> + <td>{{ $row->qso }}</td> + </tr> + @endforeach </tbody> </table> </div> |