14 lines
274 B
PHP
14 lines
274 B
PHP
@include('components.form.input', ['class' => 'datetimepicker'])
|
|
|
|
@if(!defined('LOAD_DATETIMEPICKER'))
|
|
@include('boilerplate::load.datetimepicker')
|
|
@push('js')
|
|
<script>
|
|
$(function() {
|
|
$('.datetimepicker').datetimepicker({});
|
|
});
|
|
</script>
|
|
@endpush
|
|
@endif
|
|
|