employee_projects.blade.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. @extends('layouts.app')
  2. @section('check')
  3. <nav class="nav nav-masthead justify-content-center">
  4. <a class="nav-link" href="/">Проекты</a>
  5. <a class="nav-link" href="/employees">Сотрудники</a>
  6. <a class="nav-link active" href="/employee_projects">Назначенные по проетам</a>
  7. </nav>
  8. @endsection
  9. @section('content')
  10. <script src="js/settings.js"></script>
  11. <div class="card-body">
  12. <table class="table table-striped task-table">
  13. <thead>
  14. <th>Название проекта</th>
  15. <th>ФИО сотрудников</th>
  16. </thead>
  17. <tbody>
  18. @foreach($info as $i)
  19. <tr>
  20. <td class="table-text">
  21. <div>{{ $i['name'] }}</div>
  22. </td>
  23. <td class="table-text">
  24. <div>
  25. @foreach ($i['ems'] as $item)
  26. <p>{{ $item['name'] }}</p>
  27. @endforeach
  28. </div>
  29. </td>
  30. </tr>
  31. @endforeach
  32. </tbody>
  33. </table>
  34. </div>
  35. @endsection