@extends('layouts.index') @section('content')

Doctor List

Add Doctors
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@foreach($doctorList as $key => $doctor) @endforeach
Sr. No. Name Education Designation Department Experience Edit Delete
{{ $doctorList->firstItem() + $loop->index }} {{ $doctor->firstname.' '.$doctor->lastname }} {{ $doctor->education }} {{ $doctor->medical_license}} {{ $doctor->specialization }} {{ $doctor->work_experience }} Edit Delete
{{ $doctorList->links() }}
@endsection