@extends('layouts.app') @section('title', 'Product List') @section('content')
| @lang('Category') | @lang('ASIN') | @lang('Manufacturer') | @lang('Part Number') | @lang('Source Link') | @lang('Status') | @lang('Actions') |
|---|---|---|---|---|---|---|
| {{$product->formatted_chapter }} | {{ $product->asin }} | {{ $product->manufacturer ?? 'N/A' }} | {{ $product->part_number ?? 'N/A' }} | @if ($product->source_link) @lang('Link') @else @lang('N/A') @endif | {{ $product->status ? 'Active' : 'Inactive' }} | @lang('Edit') |