@extends('layouts.app') @section('title', 'Reservations') @section('navbar', View::make('inc.navbar')) @section('content') @if (count($data) > 0)
@foreach ($data as $row) @if ($row->approved) @else @endif @endforeach
ID Approved Operator Callsign QSO From To Frequencies Modes Special Callsign Operator Name Operator Email Operator Phone Actions
{{ $row->id }}{{ $row->operatorCall }} {{ $row->qso }} {{ $row->fromTime }} {{ $row->toTime }} {{ $row->frequencies }} {{ $row->modes }} {{ $row->specialCall }} {{ $row->operatorName }} {{ $row->operatorEmail }} {{ $row->operatorPhone }}
@else
There are currently no reservations.
@endif @endsection()