@extends('layouts.admin') @section('title', 'Organismos') @push('styles') @vite(['resources/css/admin.css']) @endpush @section('content')
| ID | Nombre | Descripción | Dirección | Teléfono | Acciones | ||
|---|---|---|---|---|---|---|---|
| '; if ($hasChildren && $level < 3) { // Máximo 4 niveles (0,1,2,3) echo ''; } else { echo ''; } echo ' | '; echo '' . ($level == 0 ? '' . $organismo->id . '' : $organismo->id) . ' | '; echo ''; echo ($level > 0 ? $icons[$level] : ''); echo ($level == 0 ? '' . $organismo->nombre . '' : $organismo->nombre); if ($hasChildren) { echo ' ' . $children->count() . ''; } echo ' | '; echo '' . $organismo->descripcion . ' | '; echo '' . $organismo->direccion . ' | '; echo '' . $organismo->telefono . ' | '; echo '' . $organismo->email . ' | '; echo '
| ';
echo '
|
No hay organismos registrados. |
|||||||