@extends('layouts.user.dashb4')
@section('content')
| Character | Fleet Commander | Ship Type | Loss Value | Status | Date | @foreach($open as $o)
|---|---|---|---|---|---|
| {{ $o['character_name'] }} | {{ $o['fleet_commander_name'] }} | {{ $o['ship_type'] }} | {{ number_format($o['loss_value'], 2, ".", ",") }} | {{ $o['approved'] }} | {{ $o['created_at'] }} |
| Character | Fleet Commander | Ship Type | Loss Value | Status | Notes | Date | @foreach($denied as $d)
|---|---|---|---|---|---|---|
| {{ $d['character_name'] }} | {{ $d['fleet_commander_name'] }} | {{ $d['ship_type'] }} | {{ number_format($d['loss_value'], 2, ".", ",") }} | {{ $d['approved'] }} | {{ $d['notes'] }} | {{ $d['updated_at'] }} |
| Character | Fleet Commander | Ship Type | Loss Value | Status | Date | @foreach($approved as $a)
|---|---|---|---|---|---|
| {{ $a['character_name'] }} | {{ $a['fleet_commander_name'] }} | {{ $a['ship_type'] }} | {{ number_format($a['loss_value'], 2, ".", ",") }} | {{ $a['approved'] }} | {{ $a['updated_at'] }} |