- array/string Helpers: Laravel Convert old array and string helpers into their modern class-based methods.
- Use Laravel Carbon: Laravel provides an Illuminate\Support\Carbon class which wraps the underlying Carbon class. By using this class, you gain access to some additional testing methods and create separation between your code and underlying dependencies.
This commit is contained in:
parent
50ceeb193b
commit
7d1406ee5c
16 changed files with 18 additions and 17 deletions
|
@ -93,7 +93,7 @@
|
|||
|
||||
{{-- <div class="form-group">
|
||||
{!! Form::label('licenses[]', 'Licenses..') !!}
|
||||
{!! Form::select('licenses[]', $options, array_pluck($document->licenses, 'id'), ['multiple' ]) !!}
|
||||
{!! Form::select('licenses[]', $options, Arr::pluck($document->licenses, 'id'), ['multiple' ]) !!}
|
||||
</div> --}}
|
||||
|
||||
<div class="pure-control-group checkboxlist">
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue