@extends('layouts.master') @section('title', 'Inventory Movement Report') @section('content')
Back to Dashboard
Inventory Movement Report
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if(isset($movementData) && count($movementData) > 0)
@csrf
Inventory Movement Details
@if(count($movementData) > 0)
@foreach($movementData as $data) @if($data['type'] == 'opening_balance' || $data['type'] == 'closing_balance') @else @endif @endforeach
Date Item Code Item Description Warehouse Category Reference Qty In Qty Out Qty Available
{{ $data['date'] }} {{ $data['reference'] }} {{ number_format($data['qty_available'], 2) }}
{{ $data['date'] }} {{ $data['item_code'] }} {{ $data['item_description'] }} {{ $data['warehouse'] }} {{ $data['group'] }} {{ $data['reference'] }} {{ number_format($data['qty_in'], 2) }} {{ number_format($data['qty_out'], 2) }} {{ number_format($data['qty_available'], 2) }}
@else
No inventory transactions found for the selected criteria.
@endif

Copyright © Melsoft (Private) Limited

@elseif(isset($movementData) && count($movementData) == 0)
No inventory items found for the selected criteria.
@endif
@endsection @section('styles') @endsection @section('scripts') @endsection