@extends('layouts.vendor') @section('page-title', 'Products') @section('content')
{{-- Header --}}

Products

You have total {{ $statusCounts['all'] }} products

{{-- Status Tabs --}}
{{-- Filters & Table --}}
{{-- Filter Bar --}}
{{-- Bulk Action Bar --}} {{-- Table --}}
@forelse($products as $index => $product) @empty @endforelse
# Title Category Detail Stock Published Featured Options
{{ $products->firstItem() + $index }}
@if($product->primaryImage) {{ $product->name }} @else
@endif
{{ $product->category->name }}

Price: ${{ number_format($product->price, 2) }}

Sales: {{ $product->sales_count ?? 0 }}

{{ $product->stock_quantity }}
@csrf
@csrf

No products found

Try adjusting your filters or add a new product

{{-- Pagination --}} @if($products->hasPages())
{{ $products->links() }}
@endif
@endsection