Endoscopist :
@if($doctor01[0]->name!="") {{$doctor01[0]->name}} @endif
@if($doctor02[0]->name!="") ,{{$doctor02[0]->name}} @endif
@if($doctor03[0]->name!="") ,{{$doctor03[0]->name}} @endif
@if($doctor04[0]->name!="") , {{$doctor04[0]->name}} @endif
|
Nurse, Assist / Anesthesia :
@if($nurse01[0]->name!="") {{$nurse01[0]->name}} @endif
@if($nurse02[0]->name!=""), {{$nurse02[0]->name}} @endif
@if($nurse03[0]->name!=""), {{$nurse03[0]->name}} @endif
@if($nurse04[0]->name!=""), {{$nurse04[0]->name}} @endif
@if($anes[0]->name!="") / {{$anes[0]->name}} @endif
|
|
Endoscope : |
@php
$i =0;
@endphp
@foreach($photoselect as $p)
@php
$ex = explode('_',$p->photo_name);
$keep[$i] = $ex[1];
$i++;
@endphp
@endforeach
@php
if($keep==null){
$b=array();
}else{
$b = array_unique ($keep);
}
@endphp
@foreach($b as $c)
@php
if($c!="self")
{
$showscope = DB::table('tb_scope')->where('scope_id','=',$c)->first();
echo " | ";
echo $showscope->scope_name;
echo " | ";
}
@endphp
@endforeach
|
|