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