@extends('layouts.app') @section('title', 'Online Application Students List') @include('admin.components.toster') @section('content')

@if ($students) @foreach ($students as $item) @endforeach
Action # Photo Student ID Name Name (Bangla) Father Mother Class Session Group Year Section Roll Registration Created Status
Show {{ $loop->iteration }} @if (optional($item->user)->avatar) @endif {{ optional($item->user)->uid }} {{ optional($item->user)->name }} {{ optional($item->user)->name_bn }} {{ optional($item->user->studentInfo)->father }} {{ optional($item->user->studentInfo)->mother }} {{ optional($item->classtype)->name }} {{ optional($item->session)->name }} {{ optional($item->group)->name }} {{ optional($item->classyear)->name }} {{ optional($item->section)->name }} {{ optional($item->user)->roll }} {{ optional($item->user)->registration }} {{ $item->created_at->format('d-m-Y') }}
{{ $item->status }}
@else

No Student Found

@endif
{{-- **************************** Status Change Modal Div **************************** --}} {{-- **************************** End Status Change Modal Div **************************** --}} @endsection @push('delete')
@csrf @method('delete')
@endpush @include('admin.components.common') @include('admin.components.tosterjs') @push('js') @endpush