@extends('admin.layout') @section('title', 'Mağaza Ürünleri') @section('content')
| Ürün | Kategori | Fiyat | Bedenler | Durum | |
|---|---|---|---|---|---|
|
@if($product->image_path)
{{ $product->title }}
{{ \Illuminate\Support\Str::limit($product->description ?: '', 60) }}
|
{{ $product->category?->name ?? '—' }} | {{ number_format((float)$product->price, 2, ',', '.') }} ₺ | {{ $product->sizes->pluck('size')->implode(', ') ?: '—' }} | {{ $product->is_active ? 'Aktif' : 'Pasif' }} | |
| Ürün yok. | |||||