@extends('layouts.app') @section('title', 'Tipos de Asunto') @section('content')

subjectTipos de Asunto

Gestión de asuntos de resoluciones y sus categorías

subject

Total de asuntos

{{ $asuntoTypes->count() }}

Nuevo asunto

Registra un nuevo tipo de asunto
Tipos de asunto
{{-- Vista móvil --}}
@forelse ($asuntoTypes as $key => $asunto)
{{ $asunto->name }}

Resoluciones compatibles

@foreach($asunto->resolucionTypes as $rt) {{ $rt->name }} @endforeach
@if($asunto->description)

{{ $asunto->description }}

@endif
@empty
subject No hay tipos de asunto registrados
@endforelse
@forelse ($asuntoTypes as $key => $asunto) @empty @endforelse
# Nombre del Asunto Tipos de Resolución Compatibles Acciones
{{ $key + 1 }}
{{ $asunto->name }}
@if($asunto->description)
{{ $asunto->description }}
@endif
@foreach($asunto->resolucionTypes as $rt) {{ $rt->name }} @endforeach
subject No hay tipos de asunto registrados
{{-- Modales --}} @include('asunto-types.forms.create') @include('asunto-types.forms.edit') @include('asunto-types.forms.delete') @endsection @section('scripts') @endsection