Products Export Report

Total Products: {{ $products->count() }}

Export Date: {{ now()->format('Y-m-d H:i:s') }}

@if($products->count() > 0) @foreach($products as $product) @endforeach
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 }}
@else

No products found matching the specified criteria.

@endif