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

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

@php $options = ['' => 'Select any']; $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' => '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' => 'dateRange'], ]; @endphp @include('partials.searchPanel.main', ['searchElements' => $searchElements])
{{-- div for Company --}} {{ $company->name }}
{{ $company->address }}
{!! $data['pageTitle'] !!}
Printed Date: {{ date('d-m-Y') }}
SL# Issue Date Issue No Branch Quantity Total Cost Price Total Price
From Branch To Branch
@endsection