@extends('layout.layout') @section('content') {{-- @if (session('success'))
{{ session('success') }}
@endif --}}
Show
Add New Student
@forelse($students as $index => $student) @empty @endforelse
Photo ID First Name Last Name Actions
student photo {{ $student->id }} {{ $student->first_name }} {{ $student->last_name }}
No student found.
{{ $students->appends(request()->except('page'))->links('pagination::bootstrap-5') }}
@endsection