@extends('layouts.app') @section('title') Stock Relocation View @endsection @section('button') Back @endsection @section('content')
| 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 ?? '' }} | @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