@extends('layouts.master') @section('title', 'Show Shipment | Alboosh - Timeless authenticity, born of the desert') @section('title-topbar', __('basic.shipment')) @section('css') {{-- leaflet --}} @endsection @section('fixedcontent') @if (Session::has('success'))

Sent Successfully

{{ Session::get('success') }}

@endif @endsection @section('content')
{{ __('basic.dashboard') }} | {{ __('basic.shipments') }} | {{ __('basic.shipment') }}
{{ __('basic.print') }} {{ __('basic.waybill') }} @if($order->delivery_last_latitude) {{ __('basic.track') }} @endif @if($order->invoice_id) {{ __('basic.invoice') }} @endif {{ __('basic.delete') }} {{ __('basic.edit') }}
{{ __('basic.shipment no') }}: {{ $order->code }}
{{ __('basic.delivery') }}: @if($order->delivery) {{ $order->delivery->full_name }} @endif
{{ __('basic.shipped from') }}: @if($order->shipped_from > 0) {{ $order->shipped_from_status }} @endif
{{ __('basic.created') }}: {{ $order->created_at }}
{{------------ shipments ---------------}} @foreach ($order->order_items as $item_si)

{{ $item_si->product->name }}

{{ $item_si->main_price->name }}

{{ $item_si->main_price->sell }}


@if($item_si->additions) @foreach ($item_si->additions as $item_addit)

{{ $item_addit->product_price->name }}

{{ $item_addit->product_price->sell }}

@endforeach @endif
{{ $item_si->qty }}

{{ $item_si->product->unit->name }}

{{ $item_si->final_price }}

{{ $currency }}

@endforeach {{-- client, address, order total --}}
{{ __('basic.client details') }}
@error('traveler_id') {{ $message }} @enderror
{{ __('basic.delivery address') }}:
{{ __('basic.street name') }}: {{ $order->delivery_address->street_name }} , {{ __('basic.bulding no') }}: {{ $order->delivery_address->bulding_number }}, {{ __('basic.floor') }}: {{ $order->delivery_address->floor }}, {{ __('basic.apt no') }}: {{ $order->delivery_address->apartment_number }}
{{ $order->delivery_address->extra_info }}
{{ $order->delivery_address->phone_number }}
@error('note') {{ $message }} @enderror
{{ __('basic.shipment details') }}
{{ __('basic.subtotal') }}
{{ $currency }}
{{ __('basic.delivery') }}
{{ $currency }}
{{ __('basic.discount') }}
{{ $currency }}
{{ __('basic.final price') }}
{{ $currency }}
{{--
--}}
@endsection @section('js') {{-- products come from --}} {{-- print jquery --}} {{-- leaflet --}} @endsection