@extends('layouts.tabler') @section('content')

Invoice #{{ $order->invoice_no }}

Customer ID: {{ $order->customer_id }}

Order Date: {{ $order->order_date }}

@foreach($orderDetails as $item) @endforeach
Product Qty Unit Cost Total
{{ $item->product_name }} {{ $item->quantity }} {{ $item->unitcost }} {{ $item->total }}
@endsection