@extends('layouts.app') @section('title', __('app.transactions')) @section('css') @endsection @section('content')
Item Image

{{ $item->name }}

{{ __('item.stock_quantity') }}
{{ $formatNumber->formatQuantity($item->current_stock) }}
{{ __('app.price') }} : {{ $formatNumber->formatWithPrecision($item->sale_price, comma:true) }} /{{ $item->baseUnit->name }}
{{ __('item.code') }}#
{{ $item->item_code }}
{{ __('item.category.category') }}
{{ $item->category->name }}
{{ __('item.item_type') }}
{{ ucfirst($item->tracking_type) }}
{{ __('app.description') }}
{{ $item->description }}
{{ __('app.transactions') }}
{{-- CSRF Protection --}} @csrf @method('POST')
{{ __('app.date') }} {{ __('app.reference_no') }} {{ __('app.transaction_type') }} {{ __('item.price_per_unit') }} {{ __('item.quantity') }} {{ __('item.stock_impact') }} {{ __('unit.unit') }}
@endsection @section('js') @endsection