@extends('layouts.frontpages') @section('content') @include('partials.header')
@guest
@else @include('partials.banner-user')
@if (session('status'))
{{ session('status') }}
@endif



RESUMEN DE PUNTOS POR VENCER

@foreach ($points as $item) @endforeach
Evento Fecha Registro Fecha Vencimiento Puntos
{{ $item['event'] }} {{ $item['created_at'] }} {{ $item['date_expiration'] }} {{ $item['value'] }}
Total Puntos por vencer {{ Auth::user()->pointsNearLiquidation() }}

@endguest
@include('partials.footer') @stop @section('scripts') @endsection