@extends('layouts.app') {{-- Use your main layout file --}} @section('title', 'Products Inventory') @section('content') {{-- Alpine component manages view mode and selected products --}}
ASIN: {{ $product->asin ?? 'N/A' }}
Type: {{ $product->type ?? 'N/A' }}
Price: ${{ number_format($product->price ?? 0, 2) }}
Status: @if ($product->availability ?? true) Available@elseNot Available @endif
No products found matching your criteria.