@extends('admin.layout') @section('title', 'Productos') @section('page-title', 'Ürünler') @section('content')
Mağaza ürünlerini, varyantlarını ve görsellerini buradan yönetebilirsiniz.
| Ürün | Kategori | Fiyat | Stok | Durum | İşlemler | |
|---|---|---|---|---|---|---|
|
@php($primary = $product->images->firstWhere('is_primary', true) ?? $product->images->first())
@if ($primary)
|
{{ $product->name }}
{{ $product->has_variants ? ($product->variants->count() . ' varyant') : ('SKU: ' . ($product->sku ?? '—')) }}
|
{{ $product->category?->name ?? '—' }} | @php([$min, $max] = $product->effectivePriceRange()) @if ($min == $max) {{ number_format($min, 2, ',', '.') }} ₺ @else {{ number_format($min, 2, ',', '.') }} ₺ – {{ number_format($max, 2, ',', '.') }} ₺ @endif | @if ($product->isInStock()) Stokta @else Tükendi @endif |
Henüz ürün bulunmamaktadır.
İlk Ürünü Oluştur