@extends('admin.dashboard') @section('title','Live doctors team') @section('content')

Live-Doctor data-table

Create New
@foreach($doctors as $key=>$live) @endforeach
#PhotoFull NameSex Education Reg. No Modify
{{$key+1}} {{$live->doctor->full_name}} {{$live->doctor->sex}} @if( strlen(strip_tags($live->doctor->education))>40 )

{{mb_substr(strip_tags($live->doctor->education),0,40)}} ...

@else {!! strip_tags($live->doctor->education) !!} @endif
{{$live->doctor->reg}}  


{{$doctors->links()}}
@endsection