@extends('layouts.index') @section('estilos') @stop @section('menu') @include('menu.index'); @stop @section('content')

{{'Mis Pagos'}}

@foreach ($pagos as $pago) @endforeach
{{'Fecha Atencion'}} {{'Odontologo'}} {{'Paciente'}} {{'Valor'}} {{'Opciones'}}
{{date("d-m-Y",strtotime($pago->created_at))}} {{$pago->odontologo}} {{$pago->paciente}} {{number_format($pago->valor)}} Detalle Comprobante
@stop @section('scripts') @stop