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

MIS REPORT PART 1

@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 1
Branch Name:
As on:

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

01.Statement Of Outlet and Customer

Name Of Supplier Name Of Product Group No Of Out Let Cumulative Customer(End of the Prieod) New Customer(Current Prieod) Total Customer(End of the Current Prieod)
Cash Credit Total Customer Full Paid(Credit) Current Customer Cash Credit Total Customer Full Paid Cash Credit Total Customer Full Paid Customer Customer(End Of the current period)

02.Statement on Number of Product Sales

Name Of Supplier Name Of Product Group Cumulative Sales (End of the Prieod) New Sales(Current Prieod) Total Sales(End of the Current Prieod)
Cash Credit Total Sales Cash Credit Total Sales Cash Credit Total Sales

03.Statement Of Product Sales & Recovery Amount

Name Of Supplier Name Of Product Group Sales Amount (End of the Prieod) Current Prieod Sales & Collection Outstanding Balance(End of the Current Prieod)
Cumulatives Sales Cumulative Recovery Outstanding Balance Sales Recovery
Cash Credit Total Sales Cash Credit Total Sales Cumulatives Sales Cumulative Recovery Outstanding(End of the current period)
Prepared By Verified By Reviewed By Approved By
@endsection