@extends('master') @section('title') {{ $title }} @endsection @section('content')

Student List

{{-- ..................................................... --}}
@csrf
@php $sn=0; @endphp @foreach($students as $student) @endforeach
S/N Regno Roll No First Name Middle Name Last Name Batch Program Date of Birth Actions
{{ $sn+=1 }} {{ $student->regno }} {{ $student->rollno }} {{ $student->first_name }} {{ $student->middle_name }} {{ $student->last_name }} {{ $student->batch }} {{ $student->program }} {{ $student->dob }} Edit Delete
@endsection