@extends('layouts.app', [ 'class' => '', 'elementActive' => 'listarUsuarios', ]) @section('content')
{{-- table-responsive --}} {{-- --}} @foreach ($data as $item) @endforeach
ID NOMBRE CORREO USUARIO ROL ACCIONES
{{ $item->id }} {{ $item->name }} {{ $item->email }} {{ $item->roles()->first()->rol }} {{ Form::open(['url' => 'eliminarUsuario' . '/' . $item->id, 'class' => 'pull-right', 'id' => 'frmDel' . $item->id]) }} {{ Form::hidden('_method', 'DELETE') }} {{ Form::close() }}
image @endsection @push('scripts') @endpush