@extends('layouts.app') @section('title', 'Manufacturing Report Details (Beta)') @section('content')
Manufacturing Report Details
@component('components.filters', ['title' => __('report.filters')])
Inventory Control To Location {{$location_name}}
New Report
@endcomponent
{{ csrf_field() }}
@foreach($products_data as $product_data)
@if($product_data->qty_available >= 0) {{ $system_qty_available = (-1) * ($product_data->qty_available) }} @else {{ $system_qty_available = 0 }} @endif
@endforeach
Inventory Control To Location {{$location_name}} and printed by : {{$printed_user}}
Product Name
Product SKU
Current Stock "On Land"
Current Stock "System"
Difference "Qty On System - Qty On Land"
{{$product_data->product_name}}
{{$product_data->product_sku}}
{{$product_data->qty_available}}
@endsection @section('javascript') @endsection