26 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('layouts.admin')
 | |
| 
 | |
| @section('title', trans('reports.summary.tax'))
 | |
| 
 | |
| @section('new_button')
 | |
| <span class="new-button"><a href="{{ url('reports/tax-summary') }}?print=1&status={{ request('status') }}&year={{ request('year', $this_year) }}" target="_blank" class="btn btn-success btn-sm"><span class="fa fa-print"></span>  {{ trans('general.print') }}</a></span>
 | |
| @endsection
 | |
| 
 | |
| @section('content')
 | |
| <!-- Default box -->
 | |
| <div class="box box-success">
 | |
|     <div class="box-header with-border">
 | |
|         {!! Form::open(['url' => 'reports/tax-summary', 'role' => 'form', 'method' => 'GET']) !!}
 | |
|         <div id="items" class="pull-left" style="margin-left: 5px">
 | |
|             {!! Form::select('year', $years, request('year', $this_year), ['class' => 'form-control input-filter input-sm', 'onchange' => 'this.form.submit()']) !!}
 | |
|             {!! Form::select('status', $statuses, request('status'), ['class' => 'form-control input-filter input-sm']) !!}
 | |
|             {!! Form::button('<span class="fa fa-filter"></span>  ' . trans('general.filter'), ['type' => 'submit', 'class' => 'btn btn-sm btn-default btn-filter']) !!}
 | |
|         </div>
 | |
|         {!! Form::close() !!}
 | |
|     </div>
 | |
| 
 | |
|     @include('reports.tax_summary.body')
 | |
| </div>
 | |
| <!-- /.box -->
 | |
| @endsection
 |