add form for system rentals

This commit is contained in:
2020-08-12 02:46:32 -05:00
parent cd7428e3c3
commit 15ec617fec

View File

@@ -25,7 +25,7 @@
<td>{{ $rental->corporation_name }}</td>
<td>{{ $rental->system_name }}</td>
<td>{{ number_format($rental->rental_cost, 0, ".", ",") }}</td>
<td>{{ $rental->paid_until }}</td>
<td>{{ date_format($rental->paid_until, "Y-m-d") }}</td>
<td>
{!! Form::open(['action' => 'SystemRentals\RentalAdminController@updateRentalSystem', 'method' => 'POST']) !!}
{{ Form::date('paid_until', \Carbon\Carbon::now()->endOfMonth(), ['class' => 'form-control']) }}