@extends('layouts.frontend') @section('title', 'অর্ডার ট্র্যাক করুন - ' . \App\Models\Setting::get('site_name', config('app.name'))) @section('content')
নাম: {{ $order->shipping_name }}
ফোন: {{ $order->shipping_phone }}
ঠিকানা: {{ $order->shipping_address }}, {{ $order->shipping_area }}, {{ $order->shipping_district }}
তারিখ: {{ $order->created_at->format('d M, Y h:i A') }}
পেমেন্ট: {{ $order->payment_method === 'cod' ? 'ক্যাশ অন ডেলিভারি' : ucfirst($order->payment_method) }}
@if($order->tracking_number)ট্র্যাকিং নম্বর: {{ $order->tracking_number }}
@endif{{ $item->quantity }}x ৳{{ number_format($item->price, 0) }}
@if($item->color || $item->size)@if($item->color) রঙ: {{ $item->color }} @endif @if($item->size) সাইজ: {{ $item->size }} @endif
@endif