This commit is contained in:
2020-02-28 13:57:44 -03:00
parent 942308a2ca
commit 91b996201c
12 changed files with 118 additions and 80 deletions

View File

@ -1,45 +1,18 @@
<div class="ui grid">
<div class="three columns row">
<div class="row">
<div class="center aligned column">
<table class="ui table">
<thead>
<tr>
<th>DOCUMENTOS ONLINE</th>
</tr>
</thead>
<tbody>
<tr>
<td>Autorizaciones</td>
</tr>
<tr>
<td>Declaraciones</td>
</tr>
<tr>
<td>Certificados</td>
</tr>
<tr>
<td>Poderes</td>
</tr>
<tr>
<td>Contratos</td>
</tr>
<tr>
<td>Otros</td>
</tr>
</tbody>
</table>
<div class="row">
<div class="column"></div>
<div class="three wide column">
@include('home.links.documentos')
</div>
<div class="column"></div>
<div class="three wide column">
@include('home.links.consultas')
</div>
<div class="column"></div>
<div class="center aligned three wide column">
<div class="ui placeholder">
<img src="" class="ui image" />
</div>
<div class="column">
<table class="ui table">
<thead>
<tr>
<th>LINKS DE CONSULTA</th>
</tr>
</thead>
</table>
</div>
<div class="column"></div>
</div>
</div>
</div>

View File

@ -0,0 +1,7 @@
@include('home.links.listado', ['title' => 'LINKS DE CONSULTA', 'items' => [
(object) [
'icono' => '',
'contenido' => 'link1',
'link' => 'http://'
]
]])

View File

@ -0,0 +1,6 @@
@include('home.links.listado', ['title' => 'DOCUMENTOS ONLINE', 'items' => [
(object) [
'icono' => '',
'contenido' => 'Autorizaciones'
]
]])

View File

@ -0,0 +1,19 @@
<div class="ui divided list">
<div class="header item" style="font-weight: bold;">
{{$title}}
</div>
@foreach ($items as $item)
<div class="icon item">
@if (isset($item->link))
<a href="{{$item->link}}">
@endif
@if (isset($item->icono))
<i class="{{$item->icono}} icon"></i>
@endif
{{$item->contenido}}
@if (isset($item->link))
</a>
@endif
</div>
@endforeach
</div>

View File

@ -2,9 +2,11 @@
<div class="row">
<div class="three wide column">
<div class="ui inverted black center aligned segment">
N&Uacute;MERO DE ATENCI&Oacute;N ONLINE
<br />
<img src="{{$urls->assets->images}}/logo_play_store.png" />
<a href="{{$urls->play_store}}">
N&Uacute;MERO DE ATENCI&Oacute;N ONLINE
<br />
<img src="{{$urls->play_store_logo}}" />
</a>
</div>
</div>
</div>

View File

@ -1,37 +1,6 @@
<div class="ui grid">
<div class="row">
<div class="five wide column" style="padding: 2em;">
<h4>
Horario lunes a viernes
<br />
9:30 - 13:30 | 15:30 - 18:00
</h4>
<p>
La atención dentro del horario, puede verse
afectada circunstancialmente y sin previo
aviso, por encontrarse el notario cumpliendo
funciones fuera de la Notaría.
</p>
<button class="ui inverted dark-blue button">
NOTAR&Iacute;A DE TURNO
</button>
</div>
<div class="nine wide column" style="background-image: url('{{$urls->assets->images}}/img_suplente.png')">
<div class="ui center aligned grid">
<div class="row">
<div class="four wide column">
<div class="ui center aligned segment">
<h4 style="padding: 0; margin: 0;">NOTARIO SUPLENTE</h4>
<p style="font-size: 8pt;">DEL 1 DE ABRIL AL 15 DE MAYO</p>
<p class="center aligned">
MARIA VIRGINIA
<br />
WIELANDT COVARRUBIAS
</p>
</div>
</div>
</div>
</div>
</div>
@include('home.suplente.horario')
@include('home.suplente.datos')
</div>
</div>

View File

@ -0,0 +1,17 @@
<div class="nine wide column" style="background-image: url('{{$urls->assets->images}}/img_suplente.png')">
<div class="ui center aligned grid">
<div class="row">
<div class="four wide column">
<div class="ui center aligned segment">
<h4 style="padding: 0; margin: 0;">NOTARIO SUPLENTE</h4>
<p style="font-size: 8pt;">
{!!nl2br($suplente->datos->fechas)!!}
</p>
<p class="center aligned">
{!!nl2br($suplente->datos->nombre)!!}
</p>
</div>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,13 @@
<div class="five wide column" style="padding: 2em;">
<h4>
{!!nl2br($suplente->horario->titulo)!!}
</h4>
<p>
{!!nl2br($suplente->horario->contenido)!!}
</p>
<a href="{{$urls->notaria_turno}}">
<button class="ui inverted dark-blue button">
NOTAR&Iacute;A DE TURNO
</button>
</a>
</div>