srp admin dashboad fix

This commit is contained in:
2020-03-06 18:59:03 -06:00
parent 34448d56d2
commit 88697d30c5
2 changed files with 6 additions and 12 deletions

View File

@@ -13,6 +13,7 @@
<th>FC</th>
<th>ZKillboard</th>
<th>Total Loss</th>
<th>Paid Out</th>
<th>Ship Type</th>
<th>Fleet Type</th>
<th>Notes</th>
@@ -25,6 +26,7 @@
<td>{{ $approved->fleet_commander_name }}</td>
<td><a href="{{ $approved->zkillboard }}" target="_blank">zKill Link</a></td>
<td>{{ number_format($approved->loss_value, 2, ".", ",") }}</td>
<td>{{ number_format($approved->paid_value, 2, ".", ",") }}</td>
<td>{{ $approved->ship_type }}</td>
<td>{{ $approved->fleet_type }}</td>
<td>{{ $approved->notes }}</td>
@@ -37,7 +39,7 @@
</div>
</div>
<br>
<div class="container col-m-12">
<div class="container col-md-12">
<div class="card">
<div class="card-header">
<h2>Denied SRP Requests</h2>
@@ -48,6 +50,7 @@
<th>Timestamp</th>
<th>Pilot</th>
<th>FC</th>
<th>zKill</th>
<th>Total Loss</th>
<th>Ship Type</th>
<th>Fleet Type</th>
@@ -59,6 +62,7 @@
<td>{{ $denied->created_at }}</td>
<td>{{ $denied->character_name }}</td>
<td>{{ $denied->fleet_commander_name }}</td>
<td><a href="{{ $denied->zkillboard }}" target="_blank">zKill Link</a></td>
<td>{{ number_format($denied->loss_value, 2, ".", ",") }}</td>
<td>{{ $denied->ship_type }}</td>
<td>{{ $denied->fleet_type }}</td>

View File

@@ -1,18 +1,8 @@
@extends('srp.layouts.b4')
@section('content')
<div class="container">
<div id="chart-div"></div>
{!! $lava->render('PieChart', 'SRP Stats', 'chart-div') !!}
</div>
<!-- Under Review Section Guage Chart -->
<div class="container">
<div id="under-review-div"></div>
{!! $lava->render('GaugeChart', 'SRP', 'under-review-div') !!}
</div>
<div class="container">
<div id="cost-codes-div"></div>
{!! $lava->render('ColumnChart', 'Cost Codes', 'cost-codes-div') !!}
</div>
@endsection