MediaSecureVoice.php 506 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace App\Models\Media;
  3. class MediaSecureVoice extends MediaSecure
  4. {
  5. //
  6. protected $table = "media_secure_voice";
  7. protected $dateFormat = 'U';
  8. protected $fillable = array(
  9. 'uid',
  10. 'type',
  11. 'field',
  12. 'field_primary',
  13. 'origin',
  14. 'machine_result',
  15. 'translate',
  16. 'audit_at',
  17. 'audit_suggestion',
  18. 'result',
  19. 'task_id'
  20. );
  21. protected $casts = array(
  22. 'machine_result' => 'array'
  23. );
  24. }