@extends($layout) @section('content')
@include('errors.errors')

{{ $title }}

{!! Form::open(array('url' => URL_ADD_TRANSPORT_FEE, 'method' => 'POST','name'=>'formSchedule', 'novalidate'=>'')) !!}
{{ Form::label('route_id', getphrase('routes')) }} * {{Form::select('route_id', $routes_list, null, ['class'=>'form-control', 'id'=>'route_id', 'ng-model'=>'route_id', 'placeholder'=>'Select', "ng-change" => "getRouteVehicles(route_id)", 'required'=> 'true', 'ng-class'=>'{"has-error": formQuiz.route_id.$touched && formQuiz.route_id.$invalid}' ])}}
{!! getValidationMessage()!!}
*
*
@{{student_data.name | uppercase}}
{{getPhrase('email')}} @{{student_data.email}}
{{getPhrase('phone')}} @{{student_data.phone}}

{{-- Fee History and Add Discount To Student --}}
Title Month - Year {{getPhrase('date')}} {{getPhrase('amount_to_pay')}} {{getPhrase('discount')}} {{getPhrase('paid_amount')}} {{getPhrase('balance')}}
@{{record.title}} @{{record.month}} - @{{record.year}} @{{record.paid_date}} - {{$currency}} @{{record.amount}} {{$currency}} @{{record.discount}} {{$currency}} @{{record.paid_amount}} {{$currency}} @{{record.balance}}
{{$currency}} @{{total_pay}} {{$currency}} @{{total_discount}} {{$currency}} @{{total_paid}} {{$currency}} @{{total_balance}}
{{getPhrase('no_data_available')}}

Amount to Pay : {{$currency}} @{{total_amount_pay | currency : '' : 2 }}

{{ Form::label('discount', getphrase('add_discount_amount')) }} {{ Form::number('discount', null, ['class'=>'form-control', "id"=>"discount", 'required'=> 'true', 'min'=>'0', ])}}

{{getphrase('payment_mode')}} {{ Form::select('payment_mode', $payment_ways, null, ['class'=>'form-control', "id"=>"payment_mode", "ng-model"=>"payment_mode", 'required'=> 'true', 'ng-init' =>'payment_mode="cash"', 'ng-class'=>'{"has-error": formSchedule.payment_mode.$touched && formSchedule.payment_mode.$invalid}', ])}}
Amount to Pay {{$currency}} @{{total_amount_pay | currency : '' : 2 }}
Total Amount {{$currency}} @{{total_amount_pay | currency : '' : 2 }}
Enter amount
Notes
{!! Form::close() !!}
@endsection @section('footer_scripts') @include('transport.payfee.js-scripts') @stop