@extends('layouts.app') @section('css') {{-- DataTable --}} @endsection @section('content')
{{ __('Stock Transfer') }} >> #{{ sprintf("%04d", $Info->id) }}
{{ __('Source') }} : {{ isset($Info->sourceLocation->name) ? $Info->sourceLocation->name : '' }}
{{ __('Destination') }} : {{ isset($Info->destinationLocation->name) ? $Info->destinationLocation->name : '' }}
{{ __('Date') }} : {{ formatDate($Info->transfer_date) }}

@foreach($List as $value) @endforeach
{{ __('Item Name') }} {{ __('Quantity') }}
{{$value->item->name}}{{ formatCurrencyAmount($value->quantity) }}
{{ __('Total') }}{{ formatCurrencyAmount($sum) }}
@if (!empty($Info->note))
{{ __('Note') }} :
{{$Info->note}}
@endif
@endsection @section('js') {{--DataTable JS--}} @endsection