Soft deletes task

This commit is contained in:
PovilasKorop
2021-11-16 10:45:45 +02:00
parent a5acfdd85f
commit 328e51c4ee
7 changed files with 45 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
<table>
<thead>
<tr>
<th>Name</th>
</tr>
</thead>
<tbody>
@foreach ($projects as $project)
<tr>
<td>{{ $loop->iteration }}. {{ $project->name }}</td>
</tr>
@endforeach
</tbody>
</table>