mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Merge branch 'fix/respuesta_tickets' into 'main'
resuelto See merge request jjimenez/safekat!772
This commit is contained in:
@ -20,7 +20,7 @@ return [
|
||||
'isPadre' => 'Usar para variante?',
|
||||
'isRotativa' => 'Es Rotativa?',
|
||||
'isTinta' => 'Inkjet',
|
||||
'isEtiquetaEnvio' => 'Etiqueta envío',
|
||||
'isEtiquetaEnvio' => 'Etiqueta títulos',
|
||||
'manipulado' => 'manipulado',
|
||||
'maquina' => 'Maquina',
|
||||
'maquinaList' => 'Lista Máquinas',
|
||||
|
||||
@ -135,8 +135,8 @@
|
||||
<div class="mb-3">
|
||||
<label class="form-label"><?= lang("Tickets.respuesta") ?></label>
|
||||
<textarea id="respuestaMensaje" name="respuesta_mensaje" class="form-control"
|
||||
<?php if (!in_array(auth()->user()->id, $supportUsers)){
|
||||
echo "readonly";
|
||||
<?php if (!in_array(auth()->user()->id, array_column($supportUsers, 'id'))) {
|
||||
echo 'readonly';
|
||||
} ?>
|
||||
rows="4"><?= isset($respuesta) ? old('respuestaMensaje', $respuesta->mensaje) : "" ?></textarea>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user