@extends('layouts.app') @section('title') {{__('View transfer')}} @endsection @section('css') @endsection @section('breadcrumb')

{{__('Transfers')}}

@endsection @section('content')

{{__('View transfer')}}

@method('put')
@csrf {{-- @include('admin.inventory.transfers._form') --}}
{{__('Products')}}
@php $products_count=0; @endphp @if(isset($transfer)) @foreach($transfer['products'] as $product) @php $products_count++; @endphp @endforeach @elseif(old('products')) @foreach(old('products') as $product) @php $products_count++; @endphp @endforeach @endif
{{__('Product')}} {{__('Product Code')}} {{__('Batch No./ Lot No.')}} {{__('Quantity')}} {{__('Note')}}
@if(isset($product->converted_value)) @endif
{{-- --}}
@endsection @section('scripts') @endsection