2023-07-24 20:55:26 -04:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.0/jquery.min.js" integrity="sha512-3gJwYpMe3QewGELv8k/BX9vcqhryRdzRMxVfq6ngyWXwo03GFEzjsUm8Q7RZcHPHksttq7/GFoxjCVUjkjvPdw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
2024-02-23 10:20:58 -03:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.9.3/semantic.min.js" integrity="sha512-gnoBksrDbaMnlE0rhhkcx3iwzvgBGz6mOEj4/Y5ZY09n55dYddx6+WYc72A55qEesV8VX2iMomteIwobeGK1BQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
2023-07-24 20:55:26 -04:00
|
|
|
|
2025-07-22 13:18:00 +00:00
|
|
|
@include('layout.body.scripts.api')
|
|
|
|
|
|
|
|
<script>
|
2024-05-13 16:54:59 -04:00
|
|
|
const datatables_defaults = {
|
|
|
|
language: {
|
|
|
|
emptyTable: 'No hay datos disponibles',
|
|
|
|
info: 'Mostrando _START_ a _END_ de _TOTAL_ registros',
|
|
|
|
infoEmpty: 'Mostrando desde 0 a 0 de 0 registros',
|
|
|
|
infoFiltered: '(filtrado de _MAX_ registros totales)',
|
|
|
|
lengthMenu: 'Mostrar _MENU_ registros',
|
|
|
|
loadingRecords: 'Cargando...',
|
|
|
|
search: 'Buscar:',
|
|
|
|
zeroRecords: 'No se encontraron registros',
|
|
|
|
paginate: {
|
|
|
|
first: 'Primero',
|
|
|
|
last: 'Último',
|
|
|
|
next: 'Siguiente',
|
|
|
|
previous: 'Anterior',
|
|
|
|
},
|
|
|
|
aria: {
|
|
|
|
orderable: 'Ordenar por esta columna',
|
|
|
|
orderableReverse: 'Ordenar por esta columna en orden inverso',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-09-13 18:51:46 -03:00
|
|
|
const calendar_date_options = {
|
|
|
|
type: 'date',
|
|
|
|
firstDayOfWeek: 1,
|
|
|
|
today: true,
|
|
|
|
monthFirst: false,
|
|
|
|
text: {
|
|
|
|
days: ['Do', 'Lu', 'Ma', 'Mi', 'Ju', 'Vi', 'Sa'],
|
2024-05-13 16:54:59 -04:00
|
|
|
dayNamesShort: ['Dom', 'Lun', 'Mar', 'Mie', 'Jue', 'Vie', 'Sab'],
|
|
|
|
dayNames: ['Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado'],
|
2023-09-13 18:51:46 -03:00
|
|
|
months: ['Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre'],
|
|
|
|
monthsShort: ['Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'],
|
2024-05-13 16:54:59 -04:00
|
|
|
today: 'Hoy',
|
|
|
|
now: 'Ahora',
|
2023-09-13 18:51:46 -03:00
|
|
|
},
|
|
|
|
formatter: {
|
|
|
|
date: 'DD-MM-YYYY'
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2023-07-24 20:55:26 -04:00
|
|
|
@stack('page_scripts')
|