sta_four.blade.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. @extends('layouts.datatable')
  2. @section('table')
  3. <div class="row">
  4. <div class="col-md-12">
  5. <div class="box box-primary">
  6. <div class="box-header with-border">
  7. <h3 class="box-title">统计数据</h3>
  8. </div>
  9. <div class="box-body">
  10. <div class="dataTables_wrapper form-inline dt-bootstrap">
  11. <table id="table" class="table table-hover dataTable" role="grid" aria-describedby="example2_info">
  12. <thead>
  13. <tr role="row">
  14. @foreach($th as $h)
  15. <th>{{ $h }}</th>
  16. @endforeach
  17. </tr>
  18. </thead>
  19. <tbody>
  20. @foreach($table as $data)
  21. <tr>
  22. <td>{{ $data->bzc_name }}</td>
  23. <td>{{ $data->quanj }}</td>
  24. <td>{{ $data->chaj }}</td>
  25. <td>{{ $data->tongj }}</td>
  26. <td>{{ $data->zongj }}</td>
  27. </tr>
  28. @endforeach
  29. </tbody>
  30. </table>
  31. </div>
  32. </div>
  33. {{-- /.boc-body--}}
  34. </div>
  35. </div>
  36. </div>
  37. @endsection