@extends('admin.layouts.master') @section('content')
@foreach ($orderState as $item)
@endforeach
Order Items
@foreach ($order as $item) @endforeach
Image Name Count Product Price Total Price
{{ $item->productname }} {{ $item->ordercount }} {{ $item->productprice }} {{ $item->ordercount * $item->productprice }}
Order Details

Name: {{ $order[0]->customername }}

Phone: {{ $order[0]['phone'] }}

Order Code: {{ $order[0]->order_code }}

Order Date: {{ $order[0]->created_at->format('j-F-y') }}

Total Price: {{ $total + 500 }} MMK

(Includes Delivery Charges)
Payment Details

Contact: {{ $paySlipData->phone }}

Method: {{ $paySlipData->payment_type }}

Image:

@endsection @section('js-section') @endsection