@extends('layouts.sesion') @section('content') @if (Session::has('info'))
{{Session::get('info')}}
@endif @if (Session::has('err'))
{{Session::get('err')}}
@endif
Nuevo

USUARIOS

@php $i=0 @endphp @foreach($u as $row) @endforeach
# Nombre Correo Electrónico Creado Acciones
{{++$i}} {{$row->name}} {{$row->email}} {{$row->created_at->diffForHumans()}}
@csrf @method('DELETE')
@endsection