@php $order_details = $data['order_details']; $order_item_details = $data['order_items']; $branch_details = $data['branch_details']; @endphp @include('layouts.components.styles') {{--
--}}

INVOICE

{{ $branch_details->branch_name }}
@if ($branch_details->branch_address) {{ $branch_details->branch_address }}
@endif @if ($branch_details->branch_street) {{ $branch_details->branch_street }}, @endif @if ($branch_details->branch_place) {{ $branch_details->branch_place }}
@endif @if ($branch_details->branch_po_box) {{ $branch_details->branch_po_box }}
@endif @if ($branch_details->branch_city) {{ $branch_details->branch_city }}, @endif @if ($branch_details->branch_country) {{ $branch_details->branch_country }}
@endif

Order:{{ $order_details->order_unique_id }}

Time : {{ $order_details->o_time }}
Date : {{ $order_details->o_date }}

Customer Details:

{{ $order_details->o_cust_name }}

@if ($order_details->o_cust_mob) Phone : {{ $order_details->o_cust_mob }}
@endif @if ($order_details->o_cust_email) Email : {{ $order_details->o_cust_email }}
@endif @if ($order_details->customer_address) Address : {{ $order_details->customer_address }}
@endif

Token Number : {{ $order_details->order_token_number }}

@php $col_span = 7; @endphp @if ($order_details->token_tracking_status >= 5) @php $col_span = 8; @endphp @endif @php $i = 0; @endphp @foreach ($order_item_details as $items) @php $i++; @endphp @if ($order_details->token_tracking_status >= 5) @if ($items['dressed_weight'] == '') @php $items['dressed_weight'] = 'Not Available'; @endphp @endif @endif @endforeach @if ($order_details->o_shipping_charge > 0) @endif
# Item Breed Origin Weight Slab Current Weight Cutting TypeDressed WeightSub Total
{{ $i }} {{ $items['o_item_name'] }} {{ $items['breed_name'] }} {{ $items['origin_name'] }} {{ $items['weight_slab_name'] }} {{ $items['current_weight'] }} Kg {{ $items['cutting_mode_name'] }}{{ $items['dressed_weight'] }}{{ sprintf('%.2f', $items['o_item_grand_total']) }}
Sub Total : {{ sprintf('%.2f', $order_details->o_sub_total) }}
Shipping Charge : {{ sprintf('%.2f', $order_details->o_shipping_charge) }}
Grand Total INR . {{ sprintf('%.2f', $order_details->o_grand_total) }}
Thank You For Purchase!!!!!!!! Visit Again...
{{--
--}}