@extends('layouts.doctor')
@section('content')
|
PACIENTE |
TRATAMIENTO |
PIEZA |
RECOMENDACION |
|
@foreach ($procedimientos as $d)
@if (isset($d->paciente->nombre) && isset($d->tratamiento->nombre))
|
{{$d->paciente->nombre}} |
{{$d->tratamiento->nombre}} |
{{$d->pieza}} |
|
|
@else
@endif
@endforeach
@endsection
@section('style')
@endsection
@section('scripts')
@endsection