@extends('layouts.admin') @section('title', 'Products') @section('content')

Products

Add Product
@foreach($products as $product) @endforeach @if($products->isEmpty()) @endif
ID Image Name Game Price Stock Status Actions
{{ $product->id }} @if($product->image) {{ $product->name }} @else
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
@csrf @method('DELETE')
No products found. Click "Add Product" to create one.
{{ $products->links() }}
@endsection