Files
w4rpservices/resources/views/moons/user/moon.blade.php
T
drkthunder02 0bd41458ca update to login controller to fix issues
updated moons controller to give total worth rather than renter.  Left admin side as renter.
2019-02-23 14:44:44 -06:00

26 lines
729 B
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>
{!! $html !!}
</tbody>
</table>
</div>
</div>
@endsection