@extends('director.dashboard') @section('title','Live doctors list') @section('content')
@foreach($doctors as $key=>$row) @inject('live_doctor','App\LiveDoctor') @endforeach
# Photo Doctor Name Live Day & time Phone Status
{{ $key+1 }} contact-img {{$row->doctor->user->name}} @foreach($live_doctor->doctor_routine($row->doctor_id) as $routine) {{$routine->live_day}} - {{$routine->live_time}}
@endforeach
{{$row->contact}}
{{$doctors->links()}}
@endsection