duties.blade.php 618 B

1234567891011121314151617181920212223242526
  1. @extends('layout')
  2. @section('content')
  3. <div class='card-body'>
  4. <table class="table table-striped task-table">
  5. <thead>
  6. <th class="table-text">Работник</th>
  7. <th class="table-text">Обязанность</th>
  8. </thead>
  9. <tbody>
  10. @foreach ($duties as $d)
  11. <tr>
  12. <td class="table-text">{{ $d['name']}}</td>
  13. <td class="table-text">
  14. @foreach($d['duty'] as $item)
  15. <p>{{ $item['duties'] }}</p>
  16. @endforeach
  17. </td>
  18. </tr>
  19. @endforeach
  20. </tbody>
  21. </table>
  22. </div>
  23. <div align="center">
  24. <a href="/" class="btn btn-primary" style="margin-top:1%; margin-top; padding:1%;">Вернуться на главную</a>
  25. </div>
  26. @endsection