@php
$columns = [
['label' => 'ID', 'column' => 'id', 'sort' => true],
['label' => 'Company Name', 'column' => 'company_name', 'sort' => true],
['label' => 'Customer Name', 'column' => 'customer_name', 'sort' => true],
['label' => 'Sales Person Name', 'column' => 'sales_id', 'sort' => true],
['label' => 'Total Product', 'column' => 'email', 'sort' => true],
['label' => 'Total Amount', 'column' => 'status', 'sort' => true],
['label' => 'Tax', 'column' => 'status', 'sort' => true],
['label' => 'Grand Total', 'column' => 'status', 'sort' => true],
['label' => 'Actions', 'column' => 'action', 'sort' => false],
];
@endphp
@foreach ($orders as $key => $item)
{{ $item->id }}
{{ $item->company_name }}
{{ $item->customer_name }}
{{ $item->salesperson->name ?? 'N/A' }}
{{ $item->total_product }}
{{ number_format($item->total_amount,2) }}
{{ number_format($item->tax,2) }}
{{ number_format($item->grand_total,2) }}
{{-- {{$item->products->count()}} --}}
@endforeach
Action