@extends('layouts.app') @section('breadcrumbs') @include('__partials.breadcrumbs', [ 'data' => [ ['route' => 'home', 'name' => 'Home'], ['route' => '', 'name' => 'Parametros'], ['route' => '', 'name' => 'Lista de juzgados'] ], 'show_add_button' => false, 'add_button_route' => route('parametros.area') ]) @endsection @section('content')
PARAMETRIZACIÓN JUZGADOS
Nombres
{{csrf_field()}}
Buscar
@if($flag)
Volver
@endif
@if(count($documento) > 0) @foreach($documento as $juzgados) @endforeach @else
No hay juzgados registrados
@endif
#
Nombre
Crear juzgado
{{ $juzgados->id }}
{{ $juzgados->nombre }}
{{csrf_field()}}
Editar juzgado
×
{{csrf_field()}}
Nombre
Nombre que llevará el juzgado
No debe contener números, debe registrarse tal cual aparece en el oficio.
Email
Departamento
-- Seleccionar --
@foreach($departamentos as $dpto)
id == $juzgados->departamento) selected @endif>{{ $dpto->nombre }}
@endforeach
Ciudad / Municipio
-- Seleccionar --
@foreach($ciudades as $ciud)
id == $juzgados->ciudad) selected @endif>{{ $ciud->nombre }}
@endforeach
@if(!$flag) {{$documento->appends(Input::except('page'))->links()}} @endif
Nuevo juzgado
×
{{csrf_field()}}
Nombre
@foreach($juzgados_all as $juzgadoall) @endforeach
{{mb_strtoupper($juzgadoall->nombre)}}
Nombre que llevará el nuevo juzgado
No debe contener números, debe registrarse tal cual aparece en el oficio.
Email
Departamento
-- Seleccionar --
@foreach($departamentos as $dpto)
{{ $dpto->nombre }}
@endforeach
Ciudad / Municipio
-- Seleccionar --
@endsection