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