@extends('layouts.adminapp') @section('title') {{ __('lng.StudentDetails') }} - {{ __('lng.PayFee') }} @endsection @section('active_student', 'active') @section('open_student', 'open') @section('active_pay_fee', 'active') @section('content')

{{ __('lng.StudentDetails') }}

{{ $Class->title }}
@php $si=0; @endphp @foreach ($Students as $Student) @php $dob = date("F-d-Y",strtotime($Student->dob));@endphp @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Name') }} {{ __('lng.DOB') }} {{ __('lng.Guardian') }} {{ __('lng.BatchYear') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $Student->name }} {{ $dob }} {{ $Student->guardian }} {{ $Student->batch_year }} {{ __('lng.PayFee') }}

{{ __('lng.Showing') }} {{ $Students->count() }} {{ __('lng.Items') }}

@endsection