@extends('layouts.dashboardnew') @section('content') {{-- filtro por fecha --}} @include('usuario.componentes.filtroPorFecha', ['ruta' => 'puntos.fechas', 'form' => '']) {{-- filtro por Nombre --}} @include('usuario.componentes.filtroNombre', ['ruta' => 'puntos.fechas', 'form' => '']) {{-- filtro por ID --}} @include('usuario.componentes.filtroID', ['ruta' => 'puntos.fechas', 'form' => ''])
@if (Auth::user()->rol_id == 0) @endif @foreach ($datos as $dato) @if (Auth::user()->rol_id == 0) @endif @endforeach
# Usuario Descripción Puntos Fecha
{{ $dato->id }} {{ $dato->user->display_name }} {{ $dato->concepto }} {{ $dato->puntos }} {{ date('d-m-Y', strtotime($dato->created_at)) }}
@endsection @include('usuario.componentes.scritpTable')