@extends('voyager::master') @section('content')

Estadísticas por usuario

Interacciones

@if(count($interactions) == 0 && $startDate && $endDate)

Sin resultados

@endif @if(count($interactions))

Listado de resultados

@foreach ($interactions as $item) @endforeach
# Fecha Interacción Cantidad
{{ $loop->iteration }} {{ DateTime::createFromFormat('Y-m-d', $item->date)->format('d-m-Y') }} {{ $item->interaction }} {{ $item->count }}
@endif
@stop