@extends('layouts.landing') @section('head') @include('layouts._partials.tablaStyle') @endsection @section('title',"Inicio") @section('content')
Mis pagos
@forelse ($pagos as $pago) @empty

Sin pagos.

@endforelse
Fecha de pago Concepto Monto Opciones
{{$pago->fecha_pago}} @foreach ($nombres as $tconcepto) @if ($pago->concepto == $tconcepto->id) {{$tconcepto->name}} @endif @endforeach {{$pago->monto}}
@endsection @section('scripts') @include('layouts._partials.tablaSinOrden') @if (session('swal')) @endif {{-- OpenPay --}} @endsection