@extends('layouts.dashboardnew') @section('content')
@foreach ($referidos as $ref) @endforeach
ID Nombre Correo Estado Ingreso
{{ $ref->ID }} {{ $ref->display_name }} {{ $ref->user_email }} @if ($ref->status == '0') Inactivo @else Activo @endif {{ date('d-m-Y', strtotime($ref->created_at)) }}
@endsection @include('usuario.componentes.scripBotones')