Product Management

Manage your store inventory with precision and ease

@if (session('success'))
{{ session('success') }}
@endif

Product Inventory

@if(request()->hasAny(['game', 'stock', 'search'])) {{ $products->count() }} filtered results @if($products->count() > 0) â€Ē View all products @endif @else {{ $products->count() }} products in your catalog @endif

@if(request('search')) @endif
Clear
@if($products->isEmpty())

No Products Yet

Start building your inventory by adding your first product.

@else
@foreach($products as $product)
{{ $product->name }}
@if($product->Amount === 0) Out of Stock @elseif($product->Amount <= 5) {{ $product->Amount }} Left @else In Stock @endif
Price
āļŋ{{ number_format($product->price, 2) }}
@if($product->game)
@if($product->game == 'Genshin') Genshin Impact @elseif($product->game == 'Starrail') Honkai: Star Rail @elseif($product->game == 'WutheringWave') Wuthering Waves @else {{ $product->game }} @endif
@endif

{{ $product->name }}

{{ $product->description }}

@csrf @method('DELETE')
@endforeach
@endif