@extends('businessLayout::index')
@section('pageContent')
{{ __('business/table.th.name') }}
{{ __('business/table.th.quantity') }}
{{ __('business/table.th.price') }}
{{ __('business/table.th.status') }}
{{ __('business/table.th.category') }}
{{ __('business/table.th.product_type') }}
{{ __('business/table.th.actions') }}
@if($productsList->isNotEmpty())
@foreach ($productsList as $productData)
@include('business::market.index.parts.product-item', ['productData' => $productData])
@endforeach
@else
@endif
@unless($productsList->isEmpty())
{{ $productsList->onEachSide(1)->withQueryString()->links('pagination.index') }}
@endif
@endsection