2024-05-02 16:54:51 +03:00
|
|
|
@extends('layouts.layout')
|
2024-05-02 10:06:39 +03:00
|
|
|
@section('content')
|
|
|
|
|
2024-05-02 16:54:51 +03:00
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th scope="col">#</th>
|
|
|
|
<th scope="col">отдел</th>
|
|
|
|
<th scope="col">Задача</th>
|
|
|
|
<th scope="col">Статус</th>
|
|
|
|
<th scope="col">Назначил</th>
|
|
|
|
<th scope="col">Исполнители</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">1</th>
|
|
|
|
<td>Mark</td>
|
|
|
|
<td>Otto</td>
|
|
|
|
<td>@mdo</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2024-05-02 10:06:39 +03:00
|
|
|
@endsection
|