Total Products: {{ $products->count() }}
Export Date: {{ now()->format('Y-m-d H:i:s') }}
@if($products->count() > 0)| ID | Name | Description | Exclude From Sales | Created By | Created At | Updated At |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $product->name }} | {{ $product->description ?? 'N/A' }} | {{ $product->exclude_from_sales ? 'Yes' : 'No' }} | {{ $product->creator->name }} | {{ $product->created_at }} | {{ $product->updated_at }} |
No products found matching the specified criteria.
@endif