view.blade.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. @extends('admin.layouts.app')
  2. @section('content')
  3. <div class="row">
  4. <div class="ibox-content">
  5. <div class="form-group">
  6. <div class="row">
  7. <div class="col-sm-4">
  8. <div class="form-group row">
  9. <label class="col-form-label col-sm-3">完整录音:</label>
  10. <div class="col-sm-9">
  11. <audio src="http://{{ $data->record_path }}" controls="controls">
  12. </audio>
  13. </div>
  14. </div>
  15. </div>
  16. </div>
  17. </div>
  18. <table class="table table-striped table-bordered table-hover dataTables-example dataTable">
  19. <thead>
  20. <tr>
  21. <th> ID</th>
  22. <th> 呼叫标识</th>
  23. <th> 机器人</th>
  24. <th> 被叫用户</th>
  25. <th> 节点名字</th>
  26. <th> 纪录时间</th>
  27. <th> 录音地址</th>
  28. </tr>
  29. </thead>
  30. <tbody>
  31. @if(isset($list))
  32. @foreach($list as $key => $item)
  33. <tr>
  34. <td> {{ $item->id }}</td>
  35. <td> {{ $item->call_id }}</td>
  36. <td> {{ $item->ai_speak }}</td>
  37. <td> {{ $item->people_speak }}</td>
  38. <td> {{ $item->node_name }}</td>
  39. <td> {{ $item->flow_time }}</td>
  40. <td> @if($item->voice_path)<audio src="http://{{ $item->voice_path }}" controls="controls">
  41. </audio> @endif</td>
  42. </tr>
  43. @endforeach
  44. @endif
  45. </tbody>
  46. </table>
  47. </div>
  48. </div>
  49. @endsection