Files
w4rpservices/resources/views/moons/user/moon.blade.php

74 lines
2.7 KiB
PHP

@extends('layouts.b4')
@section('content')
<div class="container col-md-12">
<table class="table table-striped">
<thead>
<th>System</th>
<th>Name</th>
<th>First Ore</th>
<th>Quantity</th>
<th>Second Ore</th>
<th>Quantity</th>
<th>Third Ore</th>
<th>Quantity</th>
<th>Fourth Ore</th>
<th>Quantity</th>
<th>Rental Price</th>
<th>Moon Worth</th>
<th>Rental End</th>
</thead>
<tbody>
@foreach($table as $row)
<tr class="{{ $row['RowColor'] }}">
<td>{{ $row['SPM'] }}</td>
<td>{{ $row['StructureName'] }}</td>
<td>{{ $row['FirstOre'] }}</td>
<td>{{ $row['FirstQuantity'] }}</td>
<td>{{ $row['SecondOre'] }}</td>
<td>{{ $row['SecondQuantity'] }}</td>
<td>{{ $row['ThirdOre'] }}</td>
<td>{{ $row['ThirdQuantity'] }}</td>
<td>{{ $row['FourthOre'] }}</td>
<td>{{ $row['FourthQuantity'] }}</td>
<td>{{ $row['Price'] }}</td>
<td>{{ $row['Worth'] }}</td>
<td>{{ $row['RentalEnd'] }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col">
<div class="card">
<div class="card-header">
Legend
</div>
<div class="card-body">
<table class="table table-striped">
<tbody>
<tr class="table-primary">
<td>Moon Available</td>
</tr>
<tr class="table-danger">
<td>Moon Rented</td>
</tr>
<tr class="table-warning">
<td>Moon Rent Due</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="col"></div>
<div class="col"></div>
<div class="col"></div>
<div class="col"></div>
<div class="col"></div>
</div>
</div>
@endsection