@if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('fail'))
{{ Session::get('fail') }}
@endif @if (count($students) > 0)

My Students

@foreach ($students as $student) @endforeach
S.No. Student Class/Grade Subject Action
{{ $loop->iteration }} {{ $student->studentname }} {{ $student->class }} {{ $student->subject }}
@csrf
{{-- {!! $demos->links() !!} --}}
@else
@endif
@endsection