@extends('admin.layout') @section('customCss') @endsection @section('content')

Student List

@if (Session::has('success'))
{{ Session::get('success') }}
@endif
@foreach ($students as $item) @endforeach
ID Name Academic Year Class Father's Name Mother's Name Mobile Number Email Created Time Edit Delete
{{ $item->id }} {{ $item->name }} {{ $item->studentAcademicYear?->name ?? '-' }} {{ $item->studentClass?->name ?? '-' }} {{ $item->father_name }} {{ $item->mother_name }} {{ $item->mobno }} {{ $item->email }} {{ $item->created_at }} Edit Delete
@endsection @section('customJs') @endsection