@extends('layouts.app') @section('title') Stock Relocation Edit @endsection @section('button') Back @endsection @section('content')
@csrf

LOCATION TRANSFER



@foreach ($stock_relocation_details as $stock_relocation_detail) @php $used_qty = App\Models\Location::where( 'product_id', $stock_relocation_detail->product_id, ) ->where('area_id', $stock_relocation_detail->previous_area_id) ->where('rack_id', $stock_relocation_detail->previous_rack_id) ->where('level_id', $stock_relocation_detail->previous_level_id) ->sum('used_qty'); @endphp @endforeach
Sr No Part No Part Name Unit Available Qty Quantity Action
{{ $loop->iteration }} {{ $stock_relocation_detail->products->part_no }} {{ $stock_relocation_detail->products->part_name }} {{ $stock_relocation_detail->products->units->name ?? '' }}
{{-- PRODUCTS MODAL --}}
@endsection