@extends('layouts.admin') @section('title', 'Kelola Produk') @section('content')
Kelola produk yang dijual perusahaan
| Produk | Kategori | Harga | Stok | Status | Aksi | |
|---|---|---|---|---|---|---|
|
@if ($product->featured_image)
{{ Str::limit($product->name, 30) }}
SKU: {{ $product->sku }}
@if ($product->is_featured)
Unggulan
@endif
|
{{ $product->category->name }}
|
@if ($product->has_discount)
{{ $product->formatted_price }}
{{ $product->formatted_final_price }}
{{ $product->formatted_final_price }}
@endif
|
@if ($product->is_digital)
Digital
@else
{{ $product->stock }}
@if ($product->stock <= 0)
(Habis)
@elseif($product->stock <= 10)
(Sedikit)
@endif
@endif
|
@if ($product->is_active) Aktif @else Nonaktif @endif |