{{__('Date')}}:
{{--
{{__('From branch')}}
@if(isset($transfer)&&isset($transfer['from_branch']))
{{$transfer['from_branch']['name']}}
@elseif(old('from_branch_id')) @php $branch=\App\Models\Branch::find(old('from_branch_id')); @endphp
{{$branch['name']}}
@endif
--}}
*
{{__('Designation Laboratory')}}
@if(isset($transfer)&&isset($transfer['to_branch']))
{{$transfer['to_branch']['name']}}
@elseif(old('to_branch_id')) @php $branch=\App\Models\Branch::find(old('to_branch_id')); @endphp
{{$branch['name']}}
{{-- @else
{{ session('branch_name') }}
--}} @endif
{{__('Products')}}
{{__('Product')}}
{{__('Product Code')}}
{{__('Batch No./ Lot No.')}}
{{--
{{__('CAS No.')}}
--}}
{{__('Quantity')}}
{{__('Note')}}
@php $products_count=0; @endphp @if(isset($transfer)) @foreach($transfer['products'] as $product)
{{$product['product']['name']}}
{{$product['product']['code']}}
{{--
--}}
{{$product['note']}}
@php $products_count++; @endphp @endforeach @elseif(old('products')) @foreach(old('products') as $product) {{--
@php $original_product=\App\Models\Product::find($product['id']); @endphp
{{$original_product['name']}}
{{$product['note']}}
--}}
@php $original_product=\App\Models\Product::find($product['id']); @endphp
{{$original_product['name']}}
@php $original_product=\App\Models\Product::find($product['id']); @endphp
{{$original_product['code']}}
@if(isset($product['batch_no']))
{{$product['batch_no']}}
@endif
{{--
@if(isset($product['batch_no']))
{{$product['batch_no']}}
@endif
--}}
{{--
@if(isset($product['batch_no']))
{{$product['cas_no']}}
@endif
--}} {{--
@if(isset($product['batch_no']))
{{$product['batch_no']}}
@endif
--}} {{--
--}}
{{$product['note']}}
@php $products_count++; @endphp @endforeach @endif
Convert Product Unit
×