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

{{ $title }}

{!! Form::open(array('url' => URL_STUDENT_FEE_CANCEL, 'method' => 'POST','name'=>'formCancelfee')) !!}
Recipt No.
{{ makeNumber($payment_record->receipt_no,5) }}
Recipt Date
{{ date('d-m-Y',strtotime($payment_record->recevied_on)) }}
Name Of Student
{{$student_record->getName()}}
D/O/S Shri
{{$student_record->getFatherName()}}
Class
{{ substr(feecourse($payment_record->course_id),0,8) }}
Fine
{{ $payment_record->fine_amount}}
Discount
{{ $payment_record->discount_amount}}
Paid Fee
{{ $payment_record->paid_amount}}
Imprest Amount
{{ $payment_record->paid_imprest_amount}}

* {{ Form::label('is_cancel_fee', getphrase('Cancellation_Type')) }} @foreach ($cancelmaster as $value) @endforeach {!! Form::select('is_cancel_fee', $cancel_fee_array, '',$attributes = array('class'=>'form-control')); !!}
* {{ Form::label('refund_description', getphrase('Cancellation / Refund_description')) }} {{ Form::text('refund_description', $value = null , $attributes = array('class'=>'form-control')) }}
* {{ Form::label('refunded_amount', getphrase('Cancellation / Refund_amount')) }} {{ Form::text('refunded_amount', $value = null , $attributes = array('class'=>'form-control')) }}
{!! Form::close() !!}
@endsection @section('footer_scripts') @stop