@if($products->count() > 0)
@foreach($products as $product) @endforeach
Изображение Название Артикул системы Цена Количество Категория Дата добавления
@php $firstImage = $product->getImageUrlsForDisplay(1); $imageUrl = !empty($firstImage) ? $firstImage[0] : null; @endphp @if($imageUrl && $imageUrl !== asset('default-images/default-image.png')) {{ $product->name }}
@else
@endif
{{ $product->name }} {{ $product->sku }} @if($product->price) {{ number_format($product->price, 0, ',', ' ') }} ₽ @else - @endif @if($product->discount_price && $product->discount_price != $product->price)
{{ number_format($product->discount_price, 0, ',', ' ') }} ₽ @endif
@if($product->quantity > 0) {{ $product->quantity }} @else Нет в наличии @endif @if($product->category_id) @if($product->category) {{ $product->category->name ?? 'Категория' }} @else Категория #{{ $product->category_id }} @endif @else - @endif {{ $product->created_at->format('d.m.Y H:i') }}
@if($products->hasPages())
Показано {{ $products->firstItem() }}-{{ $products->lastItem() }} из {{ $products->total() }} товаров
@endif
@else

Товары не найдены

У вас пока нет товаров или они не соответствуют критериям поиска.

@endif