@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', 'route' => 'fees-carry-forward-search', 'method' => 'POST', 'id' => 'search_studentA']) }}
@error('class') {{ $message }} @enderror
@error('section') {{ $message }} @enderror
{{ Form::close() }}
@if(isset($students)) {{ Form::open(['class' => 'form-horizontal', 'method' => 'POST', 'route' => 'fees-carry-forward-store'])}}

@lang('fees.previous_Session_Balance_Fees')

@if(isset($update)) @endif @foreach($students as $key => $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') @lang('fees.due_date')
{{$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') @include('backEnd.partials.date_picker_css_js')