@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
@foreach($products as $product) @endforeach
ŞəkilMəhsulKateqoriyaQiymətAna 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')
{{ $products->links() }} @endsection