@php $VerEditor = auth()->user()->can('Juzgados - Visor') || auth()->user()->can('Juzgados - Editor') @endphp @if($VerEditor) @extends('layouts/app') @section('tituloModulo', 'JUZGADOS') @section('contenido')
| NOMBRE | NO. DE SALA | CATEGORÍA | ESTATUS | ACCIÓN |
|---|---|---|---|---|
| {{ $item->nombre_juzg }} | {{ $item->numero_sala_juzg }} | {{ $item->nombre_juca }} | @if($item->estatus_juzg == 'Activo') {{$item->estatus_juzg}} @endif @if ($item->estatus_juzg == 'Inactivo') {{$item->estatus_juzg}} @endif |
@can('Juzgados - Editor')
@if ($item->estatus_juzg == 'Activo')
@else
@endif
@endcan
|