@extends('layouts.master')
@section('title') Inicio @endsection
@section('content')
@component('components.breadcrumb')
@slot('li_1') Inicio @endslot
@slot('li_2') Panel Configuración @endslot
@slot('title') Roles @endslot
@endcomponent
| ID |
Nombre |
Descripción |
Estado |
Fecha Creación |
Acciones |
@foreach ($roles as $rol)
| {{ $rol->id }} |
{{ $rol->name }} |
{{ $rol->description ?? '-' }} |
@if ($rol->estado === 'Activo')
Activo
@else
Inactivo
@endif
|
{{ $rol->created_at->format('Y-m-d H:i') }} |
|
@endforeach
@endsection
@section('script')
@endsection