@extends('layouts.front_end') @section('title', 'Order Details') @section('content')
My Account
logo
Order ID: # {{$order->code}}
Date: {{date('d F Y', strtotime($order->order_date))}}

Billed To:
{{$order->Contact->business_name}}
{{$order->Contact->shipping_address}},@if($order->Contact->District){{($order->Contact->District->name)}}@endif
{{$order->Contact->mobile}}
{{--
অর্ডার স্ট্যাটাস: {{$order->status}}--}} {{--
--}}
Delivery Address :
{{$order->Contact->business_name}}
{{$order->Contact->shipping_address}},@if($order->Contact->District){{($order->Contact->District->name)}}@endif
{{$order->Contact->mobile}}
@php $i=0;$sum=0; @endphp @foreach ($orderDetails as $orderDetail) {{-- --}} {{-- --}} @endforeach
SL Product Name Image Quantity Unit Price Sub total
{{++$i}} {{date('d F Y', strtotime($order->order_date))}} {{++$i}} @if($orderDetail->Product) {{$orderDetail->Product->name}}
@if($orderDetail->model_id != "" && $orderDetail->Product->product_type == "1") @php $models = json_decode($orderDetail->model_id); @endphp @foreach($models as $model) {{$model->model}} - {{$model->qty}} @endforeach @endif @endif @if($orderDetail->Product->product_type != "1")
{ @if($orderDetail->Product->guarantee==100) গ্যারান্টি: দোকান গ্যারান্টি @elseif($orderDetail->Product->guarantee==99) গ্যারান্টি: ১ বছরের ওয়ারেন্টি @elseif($orderDetail->Product->guarantee==98) গ্যারান্টি: ২ বছরের ওয়ারেন্টি @elseif($orderDetail->Product->guarantee!=0) গ্যারান্টি: {{$orderDetail->Product->guarantee}} মাস @else গ্যারান্টি: নাই @endif } @endif
Product->ProductImageFirst) src="{{ asset('storage/photo/'.$orderDetail->Product->ProductImageFirst->image)}}" @endif style="height:60px; weight:60px;" alt="Image2" class="img-circle img-fluid">
{{$orderDetail->quantity}} @if($currencySymbol) {{$currencySymbol->symbol}} @endif {{$orderDetail->unit_price}} @php $sum += ($orderDetail->quantity* $orderDetail->unit_price); @endphp @if($currencySymbol) {{$currencySymbol->symbol}} @endif {{$orderDetail->quantity * $orderDetail->unit_price}}
সাব-টোটাল: @if($currencySymbol) {{$currencySymbol->symbol}} @endif {{$sum}}

@if($order->apply_cash_back > 0)
পূর্বের অর্ডারের ক্যাশ ব্যাক : @if($currencySymbol) - {{$currencySymbol->symbol}} @endif {{$order->apply_cash_back}}

@endif
ছাড় : @if($currencySymbol) - {{$currencySymbol->symbol}} @endif {{$order->discount}}

সর্বমোট বিল: @if($currencySymbol) {{$currencySymbol->symbol}} @endif {{$order->total_amount}}
গ্যারান্টিযুক্ত রিপ্লেস প্রডাক্টের নাম & সংখ্যা লিখুন:

{{$order->note}}

@if($order->cash_back > 0)

{{$order->cash_back}} Taka Cashback Rewarded For This Order

* N.B: This cashback will be applicable at your next Order

@endif

@endsection
@push('scripts') @endpush