@extends('layouts.app') @section('title') {{ config('app.name', 'Laravel') }} | {{ __('common.users') }} @endsection @section('heading') {{ __('common.category') }} @endsection @section('heading-icon') admin_panel_settings @endsection @section('content')
Note: {{ __('common.order_note') }}
{{ __('common.order_number') }} : {{ $form->order_number }}
{{ __('common.trans_id') }} : {{ $form->transaction_id }}
{{ __('common.reselling') }} : {{ $form->reselling }}
{{ __('common.payment_methot') }} : {{ $form->payment_method }}
{{ __('common.delivery_type') }} : {{ $shipmentdata['service_type'] ?? '' }}
@if ($form->coupon_code){{ __('common.coupon_code') }} : {{ $form->coupon_code }}
@endif @if ($form->commission_total_price){{ __('common.comm_price') }} : {{ $form->Currency->symbol }} {{ $form->commission_total_price }}
@endif{{ __('common.total_amount') }} : {{ $form->Currency->symbol }} {{ $form->total_price }}
{{ __('common.discount') }} : - {{ $form->Currency->symbol }} {{ $form->discount_price }}
{{ __('common.application_fee') }} : - {{ $form->Currency->symbol }} {{ round($netcommission,2) }} ({{ $form->commission_percent ?? '' }}%)
{{ __('common.delivery_fee') }} : - {{ $form->Currency->symbol }} {{ $shipmentdata['service_amount'] ?? '' }}
{{ __('common.netamount') }} : {{ $form->Currency->symbol }} {{ $totalamount ?? '' }}
{{ __('common.seller_name') }} : {{ $form->getVendor->business_name }}
--}}{{ __('common.phone') }} : @if ($form->getVendor->country_code == 'US') {{ app\Helpers\Helper::formattingUS('+1' . $form->getVendor->business_mobile) ?? $form->getVendor->business_mobile }}
@elseif($form->getVendor->country_code == 'BR') {{ app\Helpers\Helper::formattingBR('+55' . $form->getVendor->business_mobile) ?? $form->getVendor->business_mobile }} @else {{ $form->getVendor->business_mobile }} @endif{{ __('common.pincode') }} : {{ $form->getVendor->pin }}
{{ __('common.cityError') }} : {{ $form->getVendor->city }}
{{ __('common.location_state') }} : {{ $form->getVendor->state }}
{{ __('common.address') }} {{ $form->getVendor->address }}
@if ($form->getVendor->company_document){{ __('common.company_document') }} {{ $form->getVendor->company_document }}
@endif{{ __('common.customer_name') }} {{ $form->User->name??'' }}
{{ __('common.customer_name') }} @if (!empty($address) && $address['country_code'] == 'US') {{ app\Helpers\Helper::formattingUS('+1' . $form->User->phone) ?? $form->User->phone }}
@elseif(!empty($address) && $address['country_code'] == 'BR') {{ app\Helpers\Helper::formattingBR('+55' . $form->User->phone) ?? $form->User->phone }} @else {{ $form->User->phone }} @endif{{ __('common.customer_name') }} {{ $address['name'] ?? ""}}
{{ __('common.mobile') }}: @if (!empty($address) && $address['country_code'] == 'US') {{ app\Helpers\Helper::formattingUS('+1' . $address['mobile']) ?? $address['mobile'] }}
@elseif(!empty($address) && $address['country_code'] == 'BR') {{ app\Helpers\Helper::formattingBR('+55' . $address['mobile']) ?? $$address['mobile'] }} @else {{ $address['mobile'] ?? ""}} @endif{{ __('common.address_type') }} {{ $address['address_type'] ?? '' }}
{{ __('common.pincode') }}: {{ $address['pincode'] ?? '' }}
{{ __('common.landmark') }}: {{ $address['landmark'] ?? '' }}
{{ __('common.address') }} {{ $address['address'] ?? '' }}
@if (isset($address['document'])){{ __('common.document') }} {{ $address['document'] }}
@endif| {{ __('common.order_id') }} | {{ __('common.label_url') }} | {{ __('common.status') }} | {{ __('common.tracking_number') }} | {{ __('common.delivery_date') }} | {{ __('common.amount') }} |
|---|---|---|---|---|---|
| {{ $shipment->order_id ?? '' }} | @if (isset($shipment->label_url)) Label Url @endif | {{ $shipment->status ?? '' }} | {{ $shipment->tracking_number ?? '' }} | {{ $shipment->delivery_date ?? '' }} | {{ $shipment->amount ?? '' }} |