@extends('panel.layouts.app') @section('page-title') {{ LaraCore::setting('html_prefix') }} {{ (LaraCore::setting('html_prefix') != '') ? '|' : '' }} Expense @stop @section('content')

Expense

{{Form::text( 'start_date', $startDate, [ "class" => "form-control", "id" => 'startDate' ]) }}
{{Form::text( 'end_date', $endDate, [ "class" => "form-control", "id" => 'endDate' ]) }}
{{ Form::select('type', $type,'',["class"=>'form-control filter select2', 'id' => 'type']) }}
@if(LaraCore::canOrNot('delete_carriers')) @endif
{{ Form::open(["url"=>route('print.expense.report'),"method"=>"POST","target"=>"_blank"]) }} {{ Form::hidden('type','',['id'=>'ptype']) }} {{ Form::hidden('sdate','',['id'=>'sdate']) }} {{ Form::hidden('edate','',['id'=>'edate']) }} {{ Form::close() }}
Id @if(LaraCore::canOrNot('delete_carriers')) @endif Date Type Amount Description  
Total Amount:
@include('panel.expenses.create', [@$data])
@include('common.modal.delete_confirm_modal',['entity' => 'expense'])
@stop @section('custom-scripts') @stop