@extends('layouts.adminlayout') @section('content') @include("admin.users.viewHead")
{{ @csrf_field() }}
@include('admin.partials.flash_messages')

Move Student Class/Section


Create terms Installment Information.

terms Installment information
@error('discount_terms_type') {{ $message }} @enderror
@error('discount') {{ $message }} @enderror

Annual Fee Information

@if(isset($studNetFee->discount_terms_type) && $studNetFee->discount_terms_type == 'percent') @elseif(isset($studNetFee->discount_terms_type) && $studNetFee->discount_terms_type == 'fixed') @else @endif
Subtotal Fee {{ isset($studNetFee->subtotal) && $studNetFee->subtotal ? '₹'.$studNetFee->subtotal : '0' }}
Discount{{ isset($studNetFee->discount_terms) && $studNetFee->discount_terms ? $studNetFee->discount_terms.'%' : '0' }}{{ isset($studNetFee->discount_terms) && $studNetFee->discount_terms ? '₹'.$studNetFee->discount_terms : '0' }}
Total Amount {{ isset($studNetFee->discount_terms_price) && $studNetFee->discount_terms_price ? '₹'.$studNetFee->discount_terms_price : '0' }}
@endsection