@extends('backEnd.master') @section('title') @lang('fees.fees_forward') @endsection @section('mainContent') @php $setting = generalSetting(); if(!empty($setting->currency_symbol)){ $currency = $setting->currency_symbol; } else{ $currency = '$'; } @endphp

@lang('common.select_criteria')

{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'fees-forward-search', 'method' => 'POST', 'enctype' => 'multipart/form-data', 'id' => 'search_studentA']) }}
@if (moduleStatusCheck('University')) @includeIf( 'university::common.session_faculty_depart_academic_semester_level', ['mt' => 'mt-30', 'hide' => ['USUB'], 'required' => ['USL','USEC']] ) @else
@if ($errors->has('class')) {{ $errors->first('class') }} @endif
@if ($errors->has('section')) {{ $errors->first('section') }} @endif
@endif
{{ Form::close() }}
@if(isset($students)) {{ Form::open(['class' => 'form-horizontal', 'files' => true, 'method' => 'POST', 'route' => 'fees-forward-store', 'enctype' => 'multipart/form-data'])}}

@lang('fees.previous_Session_Balance_Fees')

@if(isset($update)) @endif @foreach($students as $student) @endforeach

@lang('fees.previous_balance_can_only_update_now.')

@lang('student.student_name') @lang('student.admission_no') @lang('student.roll_no') @lang('student.father_name') @lang('fees.balance') ({{generalSetting()->currency_symbol}}) @lang('fees.short_note')
{{$student->studentDetail->full_name}} {{$student->studentDetail->admission_no}} {{$student->studentDetail->roll_no}} {{$student->studentDetail->parents !=""?$student->studentDetail->parents->fathers_name:""}}
{{ Form::close() }} @endif
@endsection @include('backEnd.partials.data_table_js')