@extends('layouts.landing') @section('head') @include('layouts._partials.tablaStyle') @endsection @section('title',"Inicio") @section('content')
Usuarios
@forelse ($users as $user) @empty

Sin usuarios.

@endforelse
Id Nombre Rol Correo Status Opciones
{{$user->id}} {{$user->name}} @forelse($user->roles as $rol) {{ $rol->name }} @empty Sin rol @endforelse {{$user->email}} @if ($user->status==1) @else @endif @can('user.edit') @endcan
@endsection @section('scripts') @include('layouts._partials.tablaScript') @include('layouts._partials.delete') @endsection