todo/resources/views/admin/tasks/index.blade.php

26 lines
610 B
PHP
Raw Normal View History

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