@extends('layouts.app') @section('title', __('report.expense_report')) @section('css') {!! Charts::styles(['highcharts']) !!} @endsection @section('content')

{{ __('report.expense_report')}}

{!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'location_id']); !!}
{!! Form::label('category_id','Category:') !!} {!! Form::select('category', $categories, null, ['placeholder' => __('report.all'), 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'category_id']); !!}
{!! Form::label('trending_product_date_range', __('report.date_range') . ':') !!} {!! Form::text('date_range', @format_date('first day of this month') . ' ~ ' . @format_date('last day of this month') , ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'id' => 'trending_product_date_range', 'readonly']); !!}
@lang('messages.date') @lang('purchase.ref_no') @lang('business.location') @lang('sale.payment_status') @lang('sale.total_amount')
@endsection @section('javascript') @endsection