@extends('layouts.consentimientos') @section('styles')
@endsection @section('content')
REGISTRO DE PACIENTES EN LABORATORIO
@csrf
LABORATORIO
SELECCIONE SERVICIO
@foreach ($laboratorios as $laboratorio)
{{$laboratorio->laboratorio}} / Servicio: {{$laboratorio->servicio}} Costo: {{$laboratorio->precio}}
@endforeach
PIEZA:
<@include('admin.pacientes.data.piezas')
GUARDAR
@foreach ($pacientes as $pl) @endforeach
Fecha
Laboratorio
Descripcion de Pago
Total
{{$pl->created_at}}
{{$pl->nombre}}
@php echo $pl->descripcion; @endphp
Q. {{number_format($pl->total, 2)}}
@endsection @section('scripts') @endsection