@extends('layouts.adminapp') @section('content') {{-- Student --}}

STUDENT

Add New

Student Details

{{--
--}}
@php $si = 0; @endphp @foreach ($Students as $Student) @endforeach
Si No Admission No Name Photo Batch Course DOB Guardian Mobile Actions
{{ ++$si }} {{ $Student->admission_no }} {{ $Student->name }} {{ $Student->batchcourse->batch->title }} {{ $Student->batchcourse->course->title }} {{ date_format(date_create($Student->dob), 'd-m-Y') }} {{ $Student->guardian }} {{ $Student->mobile }}
@csrf @method('delete')
{{-- --}} @endsection