aboutsummaryrefslogtreecommitdiff
path: root/resources/views/pages/activities.blade.php
diff options
context:
space:
mode:
Diffstat (limited to 'resources/views/pages/activities.blade.php')
-rw-r--r--resources/views/pages/activities.blade.php23
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>