@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100']) @section('content') @include('layouts.navbars.auth.topnav', ['title' => 'Student Admission'])

Student Admission List

@foreach ($students as $index => $student) @endforeach
# First Name Register Number Date of Birth Email City High School Name Year of Passing Course Mother Name Father Occupation Guardian Name Status Action

{{ $index + 1 }}

{{ $student->firstname }}

{{ $student->stud_register_no }}

{{ \Carbon\Carbon::parse($student->dob)->format('d M, Y') }}

{{ $student->email }}

{{ $student->city }}

{{ $student->high_school_name }}

{{ $student->year_of_passing }}

{{ $student->course }}

{{ $student->mother_name }}

{{ $student->father_occupation }}

{{ $student->guardian_name }}

@if($student->oprtnl_flag == 'A') Active @elseif($student->oprtnl_flag == 'R') Registered @else Inactive @endif {{--
@csrf @method('DELETE')
--}}
@endsection @push('styles') @endpush