@extends('layouts.app') @section('css') {{-- select2 css --}} {{-- DataTable --}} @endsection @section('content')
{{ __('Stock Adjustment') }} >> #{{ sprintf("%04d", $Info->id) }}
{{ __('Location') }} : {{$Info->name}}
{{ __('Adjustment Type') }} : {{($Info->transaction_type=='STOCKIN') ? __('Stock In') : __('Stock Out')}}
{{ __('Date') }} : {{formatDate($Info->transaction_date)}}
@foreach($List as $value) @endforeach
{{ __('Item Name') }} {{ __('Quantity') }}
{{$value->description}}{{formatCurrencyAmount(abs($value->quantity))}}
{{ __('Total') }}{{formatCurrencyAmount($sum)}}
@if (! empty($Info->note))
{{ __('Note') }} :
{{$Info->note}}
@endif
@endsection @section('js') @endsection