@extends('layouts/inventory_layout') @section('title', '| ' . $data['pageTitle']) @section('content')

{!! $data['pageTitle'] !!}

@php $options = ['' => 'Select any']; $status_options = ['' => 'All','1' => 'Approve','0' => 'Pending']; $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' => 'custom','id' => 'purchase', 'name' => 'purchase_no','type' => 'select', 'label' => 'Purchase No','options' => $purchaseNo], ['element' => 'custom','id' => 'chalan_no', 'name' => 'chalan_no','type' => 'select', 'label' => 'Chalan No','options' => $chalanNo], ['element' => 'inv_group_id'], ['element' => 'inv_category_id'], ['element' => 'inv_sub_category_id'], ['element' => 'custom', 'name' => 'brand','type' => 'select', 'label' => 'Brand','options' => $brands], ['element' => 'custom', 'name' => 'product','type' => 'select', 'label' => 'Product','options' => $products], ['element' => 'supplierId'], ['element' => 'custom', 'name' => 'status','type' => 'select', 'label' => 'Status','options' => $status_options], ['element' => 'dateRange'], ]; @endphp @include('partials.searchPanel.main', ['searchElements' => $searchElements])
{{-- div for Company --}} {{ $company->name }}
{{ $company->address }}
{!! $data['pageTitle'] !!}
Printed Date: {{ date('d-m-Y') }}
SL# Purchase Date Purchase No Branch Name Chalan No Product Model Supplier Name Product Name Barcode Received Quantity Unit Price Total Amount Receive Status
@endsection