@extends('layouts.app') @section('content')
{{ _lang('Add New') }} {{ _lang('Import') }}
{{ _lang('List Product') }}
@php $currency = currency(); @endphp @foreach($items as $item) @endforeach
{{ _lang('Product') }} {{ _lang('Product Cost') }} {{ _lang('Product Price') }} {{ _lang('Product Unit') }} {{ _lang('Availabel Stock') }} {{ _lang('Tax Method') }} {{ _lang('Action') }}
{{ $item->item_name }} {{ decimalPlace($item->product->product_cost, $currency) }} {{ decimalPlace($item->product->product_price, $currency) }} {{ $item->product->product_unit }} {{ $item->product_stock->quantity }} {{ ucwords($item->product->tax_method) }}
{{ csrf_field() }}
@endsection