@extends('layouts.app') @section('content')
{{ __('Estimated inventory value.') }}
| {{ __('Product') }} | {{ __('On Hand') }} | {{ __('Unit Price') }} | {{ __('Value') }} |
|---|---|---|---|
| {{ $product->name }} | {{ $product->quantity_on_hand }} | {{ number_format($product->unit_price, 2) }} {{ config('stockiny.currency') }} | {{ number_format($product->unit_price * $product->quantity_on_hand, 2) }} {{ config('stockiny.currency') }} |