From 15ec617fec336c4353903bacf8244386cc3ff170 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Wed, 12 Aug 2020 02:46:32 -0500 Subject: [PATCH] add form for system rentals --- resources/views/rental/list.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/rental/list.blade.php b/resources/views/rental/list.blade.php index 7e52a5b86..28b9646bb 100644 --- a/resources/views/rental/list.blade.php +++ b/resources/views/rental/list.blade.php @@ -25,7 +25,7 @@ {{ $rental->corporation_name }} {{ $rental->system_name }} {{ number_format($rental->rental_cost, 0, ".", ",") }} - {{ $rental->paid_until }} + {{ date_format($rental->paid_until, "Y-m-d") }} {!! Form::open(['action' => 'SystemRentals\RentalAdminController@updateRentalSystem', 'method' => 'POST']) !!} {{ Form::date('paid_until', \Carbon\Carbon::now()->endOfMonth(), ['class' => 'form-control']) }}