store update moon function

This commit is contained in:
2020-06-04 03:28:59 -05:00
parent 9b7eb27e01
commit af9a8e955b
2 changed files with 83 additions and 173 deletions

View File

@@ -15,6 +15,10 @@
{{ Form::label('contact', 'Contact') }}
{{ Form::text('contact', '', ['class' => 'form-control', 'placeholder' => 'Character']) }}
</div>
<div class="form-group col-md-6">
{{ Form::label('contact_type', 'Contact Type') }}
{{ Form::select('contact_type', ['Character' => 'Character', 'Corporation' => 'Corporation'], 'Character') }}
</div>
<div class="form-group col-md-6">
{{ Form::label('rental_end', 'Rental End Date') }}
{{ Form::date('rental_end', \Carbon\Carbon::now()->endOfMonth(), ['class' => 'form-control']) }}