@extends('../../layouts/partials/header') @section('title', 'Roles') @section('content_header') Nuevo Rol

Lista de Roles

@endsection @section('content') {{-- Agregando el componete de LiveWire datable --}} {{-- @livewire('admin.users-index') --}}
@foreach ($roles as $role) @endforeach
Id Role
{{ $role->id }} {{ $role->name }} Editar
@csrf @method('DELETE')
@endsection @extends('../layouts/partials/footer')