@extends('layouts.adminpages') @section('content')
Puntos

@forelse($points as $point) @empty @endforelse
Usuario Año Mes Evento Puntos Usados Fecha creación Fecha vencimiento
{{ $point->user->full_name }} {{ $point->year }} {{ is_null($point->month) ? ucwords(Calendar::getHumanMonth($point->period->month)) : ucwords(Calendar::getHumanMonth($point->month)) }} {{ $point->points_event }} {{ $point->value }} {{ $point->used }} {{ Calendar::getHumanDate($point->created_at, true) }} {{ $point->value > 0 ? $point->date_expiration : '' }}
No se encontraron resultados.
{{ $points->appends(request()->input())->links() }}
@include('dashboard.point.partials.modal-upload-points') @endsection