environment.blade.php 914 B

12345678910111213141516171819202122232425262728
  1. <div class="box box-default">
  2. <div class="box-header with-border">
  3. <h3 class="box-title">Environment</h3>
  4. <div class="box-tools pull-right">
  5. <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
  6. </button>
  7. <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
  8. </div>
  9. </div>
  10. <!-- /.box-header -->
  11. <div class="box-body">
  12. <div class="table-responsive">
  13. <table class="table table-striped">
  14. @foreach($envs as $env)
  15. <tr>
  16. <td width="120px">{{ $env['name'] }}</td>
  17. <td>{{ $env['value'] }}</td>
  18. </tr>
  19. @endforeach
  20. </table>
  21. </div>
  22. <!-- /.table-responsive -->
  23. </div>
  24. <!-- /.box-body -->
  25. </div>