@extends('layouts.app') @section('content')

{{ __('Show Adjustment') }}

{{ $adjustment->warehouse-> name }}
@foreach($details as $k=> $detail) @endforeach
# {{ __('Product') }} {{ __('Current Stock') }} {{ __('Qty') }}
{{ $k+1 }} {{ $detail-> product-> code }}
{{ app()->getLocale() == 'ar' ? $detail-> product -> label_ar : $detail-> product -> label_en }}
{{ $detail-> in_warehouse }}
@endsection