@extends('layouts/pos_layout') @section('title', '| MIS-2 Report') @section('content')

MIS REPORT PART 2

@php $options = ['' => 'Select any']; $status_options = ['*' => 'All', '1' => 'Approve', '0' => 'Pending']; $viewOptions = ['' => 'Select any']; $viewStatus_options = ['1' => 'Without Zero', '0' => 'With Zero']; $purchaseNo = $options + DB::table('pos_purchases') ->pluck('purchase_no', 'purchase_no') ->all(); $chalanNo = $options + DB::table('pos_purchases') ->pluck('invoice_no', 'invoice_no') ->all(); $brands = $options + DB::table('pos_product_brands') ->pluck('name', 'id') ->all(); $products = $options + DB::table('pos_products') ->pluck('name', 'id') ->all(); $searchElements = [['element' => 'report_level', 'showAll' => 'no'], ['element' => 'branchId'], ['element' => 'supplierId'], ['element' => 'group_id'], ['element' => 'custom', 'type' => 'select', 'name' => 'withZero', 'id' => 'fillWithZero', 'options' => [1 => 'Yes', 0 => 'No'], 'label' => 'Is Zero Allow:', 'col' => 1, 'attributes' => ['print' => '0']], ['element' => 'custom', 'type' => 'select', 'name' => 'withSC', 'id' => 'fillWithSC', 'options' => [1 => 'Yes', 0 => 'No'], 'label' => 'Is SC Allow:', 'col' => 1, 'attributes' => ['print' => '0']], ['element' => 'monthyear']]; @endphp @include('partials.searchPanel.main', ['searchElements' => $searchElements])

{{ $data['company']->name }}
{{ $data['company']->address }}
Mis Report Part 2
Branch Name:
As on:

Printed Date: {{ date('d-m-Y') }}

04.Due Statement

Name Of Supplier Name Of Product Group Due (End of the last Prieod) Regular Recoverable(Current Prieod) Regular Recoverable Advance(Current Prieod) Net Recoverable(Current Prieod) Current Month Recovered New Due Amount(Current Prieod) End of the Current Prieod Overdue Classification
Regular Due Advance Total Total Watchful(1-30 Days) Substandard (31-180 Days) Doubtful(181-365 Days) Bad debt Total Due
Due Outstanding Due Due Due

05.Stock Statement

Name Of Supplier Name Of Product Group Opening Stock (End of the last Prieod) Add Current Prieod Less Current Priod Closing Stock (End of the Current Prieod)
Qty. Amount Qty. Amount Qty. Amount Qty. Amount
Prepared By Verified By Reviewed By Approved By
@endsection