36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
@extends('layouts.b4')
|
|
@section('content')
|
|
<div class="container">
|
|
<h2>Total Worth of the Moon / Month</h2>
|
|
<div class="jumbotron">
|
|
Total Moon Goo + Ore Worth: {{ $totalWorth }} ISK<br>
|
|
Total Moon Goo Worth: {{ $totalGoo }} ISK<br>
|
|
</div>
|
|
</div>
|
|
<br>
|
|
<div class="container">
|
|
<h2>Moon Composition</h2>
|
|
<div class="jumbotron">
|
|
<div class="container">
|
|
<h3>Reprocessing Percentage set at: {{ $reprocessing }}</h3>
|
|
</div>
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<th>Mineral</th>
|
|
<th>Quantity</th>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($composition as $key => $value)
|
|
@if($value > 0)
|
|
<tr>
|
|
<td>{{ $key }}</td>
|
|
<td>{{ number_format($value, 0, ".", ",") }}</td>
|
|
</tr>
|
|
@endif
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
@endsection
|