@extends('layouts.app') @section('title', 'Stock Units Report - Debug') @section('content')

Stock Units Report - Debug Mode

Debug Information

Unit Batches:

{{ json_encode($unit_batches->toArray(), JSON_PRETTY_PRINT) }}

Business Locations:

{{ json_encode($business_locations->toArray(), JSON_PRETTY_PRINT) }}

Filters

{!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! Form::select('location_id', $business_locations, request()->input('location_id', null), ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'location_filter', 'placeholder' => 'All Locations']); !!}
{!! Form::label('batch_id', 'Unit Batch:') !!} {!! Form::select('batch_id', $unit_batches, request()->input('batch_id', null), ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'batch_filter', 'placeholder' => 'All Batches']); !!}

Stock Units Report Data

# Product Name SKU Base Unit Qty Other Units
@endsection @section('javascript') @endsection