@extends('admin.layout') @section('title', 'Products') @section('content')
| Image | Name | Price | Stock | Status | Actions |
|---|---|---|---|---|---|
|
@if ($product->image)
|
{{ $product->name }}
@if ($product->best_seller)
Best Seller
@endif
{{ Str::limit($product->description, 50) }}
|
Rp {{ number_format($product->price, 0, ',', '.') }} | {{ $product->stock }} | @if ($product->stock > 0) In Stock @else Out of Stock @endif |