2021-12-01 21:04:06 -03:00
|
|
|
@extends('layout.base')
|
|
|
|
|
|
|
|
@section('content')
|
2021-12-25 23:17:47 -03:00
|
|
|
<div id="hoy"></div>
|
|
|
|
<div id="pendientes"></div>
|
|
|
|
<table class="ui basic table">
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div id="calendario"></div>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<div id="cierres"></div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2021-12-01 21:04:06 -03:00
|
|
|
@endsection
|
2021-12-25 23:17:47 -03:00
|
|
|
|
|
|
|
|
|
|
|
@push('scripts')
|
|
|
|
<script type="text/javascript" src="{{$urls->scripts}}/home.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(() => {
|
2022-06-13 21:36:11 -04:00
|
|
|
home.token = '{{$_COOKIE['rememberMe'] ?? ''}}'
|
2021-12-25 23:17:47 -03:00
|
|
|
home.setup()
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
@endpush
|