75 lines
2.7 KiB
PHP
75 lines
2.7 KiB
PHP
@extends('layouts.layout-2')
|
|
|
|
@section('content')
|
|
<h4 class="font-weight-bold py-2 mb-2">
|
|
{{ __('navigation.my_orders') }} / @if($is_abo) {{ __('abo.abo_delivery') }} @else {{ __('navigation.do_order') }} @endif
|
|
<a href="{{ route('user_order_my_delivery', [$for, $delivery_id]) }}" class="btn btn-sm btn-default float-right">{{ __('back') }}</a>
|
|
<div class="clearfix"></div>
|
|
</h4>
|
|
<style>
|
|
.btn-md-extra {
|
|
padding: 0.3rem 0.6rem;
|
|
font-size: 0.8rem;
|
|
line-height: 1.5;
|
|
border-radius: 0.25rem;
|
|
}
|
|
.md-btn-extra {
|
|
width: calc(1.7rem + 2px) !important;
|
|
line-height: 1.5rem;
|
|
}
|
|
.form-control.input-extra {
|
|
padding: 0.28rem 0.6rem;
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
min-height: calc(1.8rem + 2px);
|
|
height: calc(1.8rem + 2px);
|
|
width: 44px;
|
|
}
|
|
.input-group-min-w {
|
|
min-width: 102px;
|
|
}
|
|
.img-extra {
|
|
min-width:55px;
|
|
max-height: 160px;
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.default-style:not([dir=rtl]) div.card-datatable table.dataTable thead th:first-child,
|
|
.default-style:not([dir=rtl]) div.card-datatable table.dataTable tbody td:first-child,
|
|
.default-style:not([dir=rtl]) div.card-datatable table.dataTable tfoot th:first-child {
|
|
padding-left: 0.6rem !important;
|
|
|
|
}
|
|
.img-extra {
|
|
min-width:35px;
|
|
max-height: 160px;
|
|
}
|
|
}
|
|
</style>
|
|
@if($errors->has('switchers-comp-product'))
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="alert alert-danger" id="gotocomp">
|
|
<ul>
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
<input type="hidden" name="shipping_is_for" value="{{$for}}">
|
|
@include('user.order.list_'.$template)
|
|
|
|
@endsection
|
|
|
|
@section('scripts')
|
|
@if ($is_abo)
|
|
<script>
|
|
window.aboIntervalWarningTemplate = @json(__('abo.warning_next_date_soon_select', ['placeholder_days' => '__DAYS__', 'placeholder_date' => '__DATE__']));
|
|
window.aboIntervalInfoTemplate = @json(__('abo.info_next_execution_select', ['placeholder_days' => '__DAYS__', 'placeholder_date' => '__DATE__']));
|
|
</script>
|
|
@endif
|
|
<script src="{{ asset('/js/iq-shopping-cart.js') }}?v=1{{ get_file_last_time('/js/iq-shopping-cart.js') }}"></script>
|
|
@endsection
|