VerbaleHelper.php 558 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Helpers;
  3. class VerbaleHelper{
  4. public static function getStatusText($value, $options)
  5. {
  6. return $options[$value] ?? '';
  7. }
  8. public static function getWitnessStatusMap()
  9. {
  10. return [
  11. 1 => 'Teste presente al momento del rilievo',
  12. 2 => 'Teste non presente al momento del rilievo',
  13. 3 => "Teste che dichiara sul luogo dell'incidente",
  14. 4 => 'Teste che dichiara al Pronto Soccorso',
  15. 5 => 'Teste che dichiara in un proseguo di tempo'
  16. ];
  17. }
  18. }