@php
$shipping = json_decode($order->shipping_info, true) ?? [];
@endphp
@php
$current_shipping = json_decode($order->shipping, true);
$current_shipping_id = $current_shipping['id'] ?? null;
$shipping_services = DB::table('shipping_services')->whereStatus(1)->get();
@endphp
@if($current_shipping)
Current: {{ $current_shipping['title'] ?? 'N/A' }} (৳{{ number_format($current_shipping['price'] ?? 0, 2) }})
@else
No shipping method selected
@endif
{{-- Hide Address Line 2 --}}
{{--
--}}
{{--
--}}
{{-- Hide Country and Company - Set Bangladesh as default --}}