@extends('layouts.app') @section('content')
{{ __('Manage your product catalog.') }}
| {{ __('Stock') }} | {{ __('Product') }} | {{ __('Price') }} | {{ __('On hand') }} | {{ __('Status') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
| {{ $product->sku }} | {{ $product->name }} | {{ number_format($product->unit_price, 2) }} {{ config('stockiny.currency') }} | {{ $product->quantity_on_hand }} | {{ $product->is_active ? __('Active') : __('Inactive') }} | {{ __('Edit Product') }} |
| {{ __('No products found.') }} | |||||