@extends('layouts.doctor') @section('styles') @endsection @section('content') {{-- 1. PERFIL COMPACTO --}}
@if ($paciente->foto_perfil == null) {{ config('app.name') }} @else {{ config('app.name') }} @endif
{{ $paciente->nombre }}
    @foreach ($recordatorios as $recordatorio => $item)
  • {{ $item->descripcion }}
  • @endforeach
@if ($errors->any())
@endif {{-- BOTÓN PRINCIPAL "CAMBIOS" (Abre el Wizard) --}}
{{-- MODAL WIZARD (5 PASOS) --}} {{-- 3. HISTORIAL REALIZADO (CARDS) --}}
Historial Realizado
Dr. {{ session()->get('doctor')['nombre'] }}
@forelse ($procedimientos_doc as $p)
{{ $p->tratamiento->nombre }}
{{ \Carbon\Carbon::parse($p->fecha)->format('d/m/Y') }}

{{ $p->tratamiento->descripcion }} ({{ $p->tratamiento->tipo }})

@if ($p->recomendacion)
{{ $p->recomendacion }}
@endif @php $diarios = getDairioToFecha($p->paciente_id, $p->fecha); @endphp @if (count($diarios) > 0)
@foreach ($diarios as $diario)
Nota: {{ $diario->descripcion }}
Próxima: {{ $diario->proxima }}
@endforeach
@endif
@empty
No has realizado procedimientos hoy.
@endforelse
{{-- 4. BOTÓN FLOTANTE (FAB) PARA DIARIO --}}
@endsection @section('scripts') @endsection