@extends('backend.admin.layouts.app') @section('content')

Order

Order Summary

Billed to: {{ $orders->name }}

Phone: {{ $orders->phone }}

Address: {{ $orders->address }}

The Brain

Invoice Id: {{ $orders->id }}

Date: {{ $orders->created_at }}

Type: Cash on delivery

Order Details
@foreach ($orderDetails as $item) @endforeach
# Name image Size Quantity Product Code Price Subtotal
{{ $loop->iteration }} {{ $item->product->name }} {{ $item->size }} {{ $item->quantity }} {{ $item->product_code }} {{ $item->product->price }} {{ $item->price }}
Total (included shipping charge and discount): {{ $orders->total_price }}
Update Status :
@csrf @method('put')
@endsection @push('style') @endpush @push('script') @endpush