1234567891011121314151617181920212223242526272829303132333435363738 |
- @extends('layouts.app')
- @section('check')
- <nav class="nav nav-masthead justify-content-center">
- <a class="nav-link" href="/">Проекты</a>
- <a class="nav-link" href="/employees">Сотрудники</a>
- <a class="nav-link active" href="/employee_projects">Назначенные по проетам</a>
- </nav>
- @endsection
- @section('content')
- <script src="js/settings.js"></script>
- <div class="card-body">
- <table class="table table-striped task-table">
- <thead>
- <th>Название проекта</th>
- <th>ФИО сотрудников</th>
- </thead>
- <tbody>
- @foreach($info as $i)
- <tr>
- <td class="table-text">
- <div>{{ $i['name'] }}</div>
- </td>
- <td class="table-text">
- <div>
- @foreach ($i['ems'] as $item)
- <p>{{ $item['name'] }}</p>
- @endforeach
- </div>
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- @endsection
|