@extends('layouts.app') @section('title', __( 'report.tax_report' )) @section('content')

@lang( 'report.tax_report' ) @lang( 'report.tax_report_msg' )

@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
{{--
@component('components.widget') @slot('title') {{ __('report.input_tax') }} @show_tooltip(__('tooltip.input_tax')) @endslot
@endcomponent
@component('components.widget') @slot('title') {{ __('report.output_tax') }} @show_tooltip(__('tooltip.output_tax')) @endslot
@endcomponent
@component('components.widget') @slot('title') {{ __('lang_v1.expense_tax') }} @show_tooltip(__('lang_v1.expense_tax_tooltip')) @endslot
@endcomponent
--}}
@component('components.widget') @slot('title') {{ __('lang_v1.tax_overall') }} @show_tooltip(__('tooltip.tax_overall')) @endslot

{{ __('lang_v1.output_tax_minus_input_tax') }}:

@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