@extends('layouts.layout-2')
@section('content')
{{ __('back') }}
@if ($view === 'ot')
{{ __('navigation.customerabo') }}
@endif
@if ($view === 'me')
{{ __('navigation.myabo') }}
@endif
{{ '#' . $user_abo->payone_userid }}
@if (Session::has('alert-error'))
- {{ Session::get('alert-error') }}
@endif
@if (Session::has('alert-warning'))
- {{ Session::get('alert-warning') }}
@endif
@include('admin.abo._detail')
@include('admin.abo._detail_abo_info')
@include('admin.customer._customer_detail', ['shopping_user' => $customer_detail])
@php
$addOnlyMode = App\Services\AboHelper::isAddOnlyMode($user_abo, $view);
@endphp
{!! Form::open([
'action' => route('user_abos_update', [$view, $user_abo->id]),
'class' => 'form-horizontal',
'id' => 'cart-order-form',
'data-add-only-mode' => $addOnlyMode ? '1' : '0',
]) !!}
@include('admin.abo._order_abo', ['add_only_mode' => $addOnlyMode])
@if ($comp_products && Yard::instance('shopping')->getNumComp() > 0)
@include('user.order.comp_product')
@endif
{{ Form::close() }}
@include('admin.abo._executions')
{{ __('back') }}
| {{ __('order.article') }}: |
|
| {{ __('tables.price') }}: |
|
| {{ __('tables.quantity') }}: |
|
@endsection
@section('scripts')
@endsection