@extends('layouts.admin') @section('styles') @endsection @section('content')

{{$paciente->nombre}}


TRABAJOS

PENDIENTES

    @foreach ($trabajos as $t) @if ($t->estado === 'PENDIENTE')
  • BLOQUE: {{$t->bloque}}
    COLOR: {{$t->color}}
    TAMANO: {{$t->tamano}}
    F. ESTIMADA: {{$t->f_estimada}}
    IR
  • @endif @endforeach

ENTREGADOS

    @foreach ($trabajos as $t) @if ($t->estado !== 'PENDIENTE')
  • BLOQUE: {{$t->bloque}}
    COLOR: {{$t->color}}
    TAMANO: {{$t->tamano}}
    F. ENTREGA: {{$t->f_entrega}}
    IR
  • @endif @endforeach

DOCTORES

Actualizar Cliente

@csrf @method('PUT')

{{$paciente->nombre}}

{{$paciente->nombre}}

Direccion: {{$paciente->direccion}}

Telefono: {{$paciente->telefono}}

@endsection @section('scripts') @endsection