@extends('layouts.dashboard')
@section('title','Gestión Sistema')
@section('breadcrumb')
@endsection
@section('content')
@php
$icons = [
'ADMIN' => 'fa-user-shield',
'SOPORTE' => 'fa-headset',
'SUPER-ADMIN' => 'fa-crown',
'DESARROLLADOR' => 'fa-code',
];
@endphp
ID |
Nombre |
@permite('configuracion.gestion_sistema.actualizar')
Acciones |
@endpermite
@foreach($roles as $rol)
{{ $rol->id }} |
{{ $rol->name }}
|
@permite('configuracion.gestion_sistema.actualizar')
|
@endpermite
@endforeach
@endsection
@pushOnce('script')
@vite(['resources/js/cargarModal.js'])
@endpushOnce