@extends('admin.layouts.app') @section('title', 'Məhsullar') @section('content')

Məhsullar

Bütün məhsullar. Ana səhifədə görünənləri “Ana səhifə məhsulları” bölməsindən seçin.

Ana səhifə məhsulları + Yeni məhsul
@csrf @method('DELETE')
Seçdiyiniz məhsulları bir kliklə silə bilərsiniz.
@forelse($products as $product) @empty @endforelse
Şəkil Məhsul Kateqoriya Qiymət Ana səhifə
@if($product->image) @endif {{ $product->name }}
{{ $product->status === 'new' ? 'Yeni' : ($product->status === 'sale' ? 'Endirimdə' : 'Satışdadır') }}
{{ $product->category?->name }} {{ $product->formattedPrice() }} {{ $product->is_featured ? '✓ Görünür' : '—' }} Dəyiş
@csrf @method('DELETE')
Hələ məhsul yoxdur.
{{ $products->links() }} @endsection