@extends('layouts.b4') @section('content')
@if($ongoing > 0) @foreach($currentTimers as $timer) @endforeach
Type Stage Region Location Owner Date & Time Notes
{{ $timer->type }} {{ $timer->stage }} {{ $timer->region }} {{ $timer->system . " - " . $timer->planet . " - " . $timer->moon }} {{ $timer->owner }} {{ $timer->eveTime }} {{ $timer->notes }}
@else No current timers @endif

@if($past > 0) @foreach($oldTimers as $timer) @endforeach
Type Stage Region Location Owner Date & Time Notes
{{ $timer->type }} {{ $timer->stage }} {{ $timer->region }} {{ $timer->system . " - " . $timer->planet . " - " . $timer->moon }} {{ $timer->owner }} {{ $timer->eveTime }} {{ $timer->notes }}
@else No past timers. @endif
@endsection