{{-- vendor section --}} {{-- vendor --}}

{{ __('From') }}

{{ $order->vendor->name }}

{{ $order->vendor->address }}

{{-- to --}}

{{ __('To') }}

@empty($orderStop->delivery_addres)

{{ __('Customer Pickup') }}

@else

{{ $order->delivery_address->name ?? '' }}

{{ $order->delivery_address->address ?? '' }}

@endempty
{{-- divider --}}
{{-- products --}} @if (!empty($order->products) && $order->order_service == null) {{-- product list title --}}

{{ __('Products') }}

{{-- product list item --}} @foreach ($order->products as $orderProduct) {{ $orderProduct->quantity }} x {{ $orderProduct->product->name }}

{{ currencyFormat($orderProduct->price) }}

@endforeach @else {{-- service --}}

{{ __('Service') }}

{{-- service item --}} {{ $order->order_service->service->name }}

{{ currencyFormat($order->order_service->price) }}

@endif