@extends('adminlte::page')
@section('content_header')
Listado de Roles
@stop
@section('content')
| Nro |
Nombre del rol |
Acción |
@php
$contador = 1;
@endphp
@foreach($roles as $rol)
| {{$contador++}} |
{{$rol->name}} |
|
@endforeach
@stop
@section('css')
@stop
@section('js')
@stop