@extends('backend.master') @section('title') {{ @$data['title'] }} @endsection @section('content')
{{-- bradecrumb Area S t a r t --}} {{-- bradecrumb Area E n d --}}
@csrf @method('PUT')
@error('fees_group')
{{ $message }}
@enderror
@error('class')
{{ $message }}
@enderror
@error('section')
{{ $message }}
@enderror
@error('gender')
{{ $message }}
@enderror
@error('student_category')
{{ $message }}
@enderror

{{ ___('student_info.Fees Types') }}

@php $total = 0; @endphp @foreach ($data['fees_masters'] as $item) @php $total += $item->amount; @endphp @endforeach @if ($total > 0) @endif
{{ ___('common.All') }} {{ ___('common.name') }} {{ ___('fees.amount') }} ({{ Setting('currency_symbol') }})
id, $data['assigned_fes_masters'])? 'checked' : '' }} type="checkbox" name="fees_master_ids[]" value="{{$item->id}}"> {{ $item->type->name }} {{ $item->amount }}
{{ ___('common.total') }} {{ $total }}

{{ ___('student_info.Students List') }}

@foreach ($data['students'] as $item) @endforeach
{{ ___('common.All') }} feesAssignChilds->pluck('student_id')->toArray())) ? 'checked':''}} type="checkbox" id="all_students"> {{ ___('student_info.admission_no') }} {{___('student_info.Student Name') }} {{ ___('academic.class') }} ({{ ___('academic.section') }}) {{ ___('student_info.guardian_name') }} {{ ___('student_info.Mobile Number') }}
id, $data['fees_assign']->feesAssignChilds->pluck('student_id')->toArray()) ? 'checked' : '' }} name="student_ids[]" value="{{$item->id}}"> {{ @$item->student->admission_no }} {{ @$item->student->first_name }} {{ @$item->student->last_name }} {{ @$data['fees_assign']->class->name }} ({{ @$data['fees_assign']->section->name }}) {{ @$item->student->parent->guardian_name }} {{ @$item->student->mobile }}
@endsection