@extends('layouts.app') @section('title', 'B-To-B DebitNote Tax Report') @section('content')

@lang( 'report.tax_report' ) B-To-B DebitNote Tax Report

@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('tax_report_location_id', __('purchase.business_location') . ':') !!} {!! Form::select('tax_report_location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('tax_report_contact_id', __( 'report.contact' ) . ':') !!} {!! Form::select('tax_report_contact_id', $contact_dropdown, null , ['class' => 'form-control select2', 'id' => 'tax_report_contact_id', 'placeholder' => __('lang_v1.all')]); !!}
{!! Form::label('tax_report_date_range', __('report.date_range') . ':') !!} {!! Form::text('tax_report_date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'id' => 'tax_report_date_range', 'readonly']); !!}
@endcomponent
@stop @section('javascript') @if(!empty($tax_report_tabs)) @foreach($tax_report_tabs as $key => $tabs) @foreach ($tabs as $index => $value) @if(!empty($value['module_js_path'])) @include($value['module_js_path']) @endif @endforeach @endforeach @endif @endsection