@extends('layouts.master') @section('title') {{ __('Pay Optional Fees') }} @endsection @section('content')

{{$student->full_name.' :- '.$student->student->class_section->full_name}}



@foreach($optionalFeesData as $key =>$optionalFee) @endforeach {!! Form::hidden('total_amount',null, ["id" => "form-total-optional-amount"]) !!}
@if(count($optionalFee->optional_fees_paid)) @else @endif {{$optionalFee->amount}} {!! Form::hidden('fees_class_type['.$key.'][amount]', $optionalFee->amount) !!}


@endsection @section('js') @endsection