@extends('admin.layouts.master') @section('title', 'Dashboard') @section('content')
@include('auth.partials.error')

Schools

@forelse($students as $student) @empty

No Students Yet

@endforelse
Student Name Contact Email Phone Number Leader Date added
{{$student->getFullName()}} {{$student->email}} {{$student->phone}} Yes {{$student->created_at->format('d/m/y')}}
@empty(!$students) @if($students->previousPageUrl()) @endif @if($students->nextPageUrl()) @endif @endempty
close
Close

Add New Student

@csrf
@endsection @section("scripts") {!! JsValidator::formRequest('Guildroom\Http\Requests\Admin\AddStudentRequest', '#new-student-form') !!} @endsection