ArtiGrid
change the language of the actions
<?php
$grid = new ArtiGrid();
$grid->table('payments')
->template('bootstrap5')
->lang([
'prev' => 'Anterior',
'actions' => 'Acciones',
'next' => 'Siguiente',
'search' => 'Buscar...',
'add' => 'Agregar',
'All' => 'Todos',
'delete_multiple' => 'Eliminar seleccionados'
]);
echo $grid->render();
?>
