@extends('advancedreports::layouts.app') @section('title', __('advancedreports::lang.gst_sales_report')) @section('content')

@lang('advancedreports::lang.gst_sales_report') @lang('advancedreports::lang.manage_gst_sales_report')

@component('components.filters', [ 'title' => __('report.filters'), 'class' => 'box-primary' ])
{!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'location_filter']); !!}
{!! Form::label('customer_id', __('contact.customer') . ':') !!} {!! Form::select('customer_id', $customers, null, ['placeholder' => __('advancedreports::lang.all_customers'), 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'customer_filter']); !!}
{!! Form::label('date_range', __('report.date_range') . ':') !!} {!! Form::text('date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'id' => 'date_range_filter', 'readonly']); !!}

@endcomponent
{{-- --}}
@stop @section('javascript') @endsection