@extends('layouts.b4')
@section('content')
| Character | Fleet Commander | Ship Type | Loss Value | Status | @foreach($open as $o)
|---|---|---|---|---|
| {{ $o['character_name'] }} | {{ $o['fleet_commander_name'] }} | {{ $o['ship_type'] }} | {{ $o['loss_value'] }} | {{ $o['approved'] }} |
| Character | Fleet Commander | Ship Type | Loss Value | Status | Notes | @foreach($denied as $d)
|---|---|---|---|---|---|
| {{ $d['character_name'] }} | {{ $d['fleet_commander_name'] }} | {{ $d['ship_type'] }} | {{ $d['loss_value'] }} | {{ $d['approved'] }} | {{ $d['notes'] }} |
| Character | Fleet Commander | Ship Type | Loss Value | Status | @foreach($approved as $a)
|---|---|---|---|---|
| {{ $a['character_name'] }} | {{ $a['fleet_commander_name'] }} | {{ $a['ship_type'] }} | {{ $a['loss_value'] }} | {{ $a['approved'] }} |