@extends('admin_dashboard') @section('admin')
Order Details
@csrf {{--
Order Details
--}}
profile-image

{{ $order->customer->name }}

{{ $order->customer->email }}

{{ $order->customer->phone }}

{{ $order->customer->address }}

{{ $order->order_date }}

{{ $order->invoice_no }}

{{--

{{ $order->payment_status }}

--}}

{{ $order->sub_total }}

{{--

{{ $order->pay }}

--}}

{{ $order->previous_due }}

{{--
--}}
@foreach ($orderItem as $sl=>$item) {{-- --}} @endforeach
SL Product Id Product Code Product Name Quantity Price Discount Amount Total
{{ $sl + 1 }} {{ $item->product->id }} {{ $item->product->product_code }} {{ $item->product->product_name }} {{ $item->quantity }} {{ $item->unitcost }} {{ $item->discount_amount }} {{ $item->total }}
{{--
--}}
@endsection