@extends('layouts.admin') @section('title', 'Products') @section('content')
| ID | Image | Name | Game | Price | Stock | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $product->id }} |
@if($product->image)
No image
@endif
|
{{ $product->name }} | {{ $product->game->name ?? 'N/A' }} | @if($product->sale_price) Rp {{ number_format($product->price) }} Rp {{ number_format($product->sale_price) }} @else Rp {{ number_format($product->price) }} @endif | @if($product->stock > 0) {{ $product->stock }} @else Out of stock @endif | {{ $product->status }} | Edit |
| No products found. Click "Add Product" to create one. | |||||||