@extends("frontend.layouts.app") @push('style') @endpush @section('content')

Thank You !

We've received your orde

Order ID: {{ $orders->first()->id ?? '' }}
Order Details

Name: {{ $orders->first()->name }}

Phone: {{ $orders->first()->phone }}

Address: {{ $orders->first()->address }}

Delivery type: Inside dhaka

Payment: Cash On Delivery (COD)

Items

@foreach ($orders->first()->orderDetails as $item)

{{ $item->product->name }}

Tk {{ $item->price }}

@endforeach

TOTAL (included shipping charge)

Tk {{ $orders->first()->total_price }}

@endsection @push('style') @endpush @push('script') @endpush