add form for system rentals
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
<h2>Rental Systems</h2>
|
<h2>Rental Systems</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<table clas="table table-bordered table-striped">
|
<table class="table table-bordered table-striped">
|
||||||
<thead>
|
<thead>
|
||||||
<th>Contact</th>
|
<th>Contact</th>
|
||||||
<th>Corporation</th>
|
<th>Corporation</th>
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
<td>{{ $rental->contact_name }}</td>
|
<td>{{ $rental->contact_name }}</td>
|
||||||
<td>{{ $rental->corporation_name }}</td>
|
<td>{{ $rental->corporation_name }}</td>
|
||||||
<td>{{ $rental->system }}</td>
|
<td>{{ $rental->system }}</td>
|
||||||
<td>{{ number_format($rental->rental_cost, "2", ".", ",") }}</td>
|
<td>{{ number_format($rental->rental_cost, 0, ".", ",") }}</td>
|
||||||
<td>{{ $rental->paid_until }}</td>
|
<td>{{ $rental->paid_until }}</td>
|
||||||
<td>
|
<td>
|
||||||
{!! Form::open(['action' => 'SystemRentals\RentalAdminController@updateRentalSystem', 'method' => 'POST']) !!}
|
{!! Form::open(['action' => 'SystemRentals\RentalAdminController@updateRentalSystem', 'method' => 'POST']) !!}
|
||||||
|
|||||||
Reference in New Issue
Block a user