Files
w4rpservices/resources/views/moons/user/moon.blade.php
2020-06-06 04:49:22 -05:00

69 lines
2.6 KiB
PHP

@extends('layouts.user.dashb4')
@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>Second Ore</th>
<th>Third Ore</th>
<th>Fourth Ore</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'] }} - {{ $row['FirstQuantity'] }}</td>
<td>{{ $row['SecondOre'] }} - {{ $row['SecondQuantity'] }}</td>
<td>{{ $row['ThirdOre'] }} - {{ $row['ThirdQuantity'] }}</td>
<td>{{ $row['FourthOre'] }} - {{ $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>
<tr class="table-info">
<td>Alliance Use</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