@extends('adminlte::page') {{-- @extends('layouts.app') --}} @section('title', 'usuarios') @section('css') @endsection @section('content')

Usuarios

@forelse ($users as $usr) @empty @endforelse
Id Nombre Email Incorporación
{{ $usr->id }} {{ $usr->name }} {{ $usr->email }} {{ $usr->created_at->diffForHumans() }}
No hay datos...
@endsection @section('js') {{-- --}} @endsection {{-- @section('content')
Manage Users
{{ $dataTable->table() }}
@endsection @push('scripts') {{ $dataTable->scripts(attributes: ['type' => 'module']) }} @endpush --}}