@extends('layouts/inventory_layout') @section('title', '| Stock Report') @section('content')

PRODUCT WISE STOCK REPORT

@php $options = ['' => 'Select any']; $status_options = ['*' => 'All', '1' => 'Approve', '0' => 'Pending']; $search_system_options = ['head_office_wise' => 'Head Office Wise', 'branch_wise' => 'Branch Wise']; $viewOptions = ['' => 'Select any']; $viewStatus_options = ['1' => 'Without Zero', '0' => 'With Zero']; $purchaseNo = $options + DB::table('inv_purchase') ->pluck('purchase_no', 'purchase_no') ->all(); $chalanNo = $options + DB::table('inv_purchase') ->pluck('chalan_no', 'chalan_no') ->all(); $brands = $options + DB::table('inv_product_brand') ->pluck('name', 'id') ->all(); $products = $options + DB::table('inv_product') ->pluck('name', 'id') ->all(); $searchElements = [['element' => 'project'],['element' => 'project_type'],['element' => 'report_level', 'showAll' => 'no'], ['element' => 'branchId'], ['element' => 'supplierId'], ['element' => 'inv_category_id'], ['element' => 'custom', 'name' => 'viewSearchSystem', 'type' => 'select', 'label' => 'Search Type:', 'options' => $search_system_options], ['element' => 'dateRange']]; @endphp @include('partials.searchPanel.main', ['searchElements' => $searchElements])

{{ $data['company']->name }}
{{ $data['company']->address }}
Product Wise Stock Report
Branch Name:
Reporting Date:

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

@if($data['isTransactionMethodStatus'] == 'normal') @endif @if($data['isTransactionMethodStatus'] == 'normal') @endif
Prepared By Verified By Reviewed By Approved By
@endsection