@extends('layouts/pos_layout') @section('title', '| Basic Report') @section('content')

MONTH WISE BASIC REPORT

@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' => 'dateTo'], ]; @endphp @include('partials.searchPanel.main', ['searchElements' => $searchElements])

{{$data['company']->name}}
{{$data['company']->address}}
Month Wise Basic Rpeort
Branch Name:
As on:
Monthend Pending:

Printed Date: {{date('d-m-Y')}} [{{date('h:i:a')}}]

@endsection