@extends('layouts.app') @section('content')
| Código | RND | Nombre | Apellido Paterno | Apellido Materno | Sexo | @if($type == "Administrador" || $type == "Subadministrador") | @elseif($type == "Capturista General" || $type == "Juez") | @endif | {{$arrested[$i]->code}} | {{$arrested[$i]->rnd}} | {{$arrested[$i]->arrested_name}} | {{$arrested[$i]->arrested_first_lastname}} | {{$arrested[$i]->arrested_second_lastname}} | {{ucfirst(str_ireplace("_"," ",$arrested[$i]->arrested_gender))}} | {!!$arrested[$i]->more!!} | @if($type == "Administrador" || $type == 'Subadministrador'){!!$arrested[$i]->edit!!} | {!!$arrested[$i]->delete!!} | @elseif($type == "Capturista General" || $type == "Juez"){!!$arrested[$i]->edit!!} | @endif @endfor
|---|