First commit

This commit is contained in:
Thuan Bui
2025-03-06 10:14:48 +09:00
commit 154c37bce6
71 changed files with 12852 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
Hello
+15
View File
@@ -0,0 +1,15 @@
<x-layout>
<x-slot:heading>Task Page</x-slot:heading>
@foreach ($tasks as $task)
<div class="block border-2 border-gray-500 p-2">
<div><a href="/task/{{ $task->id }}">
<h3 class="text-2xl tracking-tight text-blue-800">{{ $task->name }}<h3>
</a></div>
<div><strong>Where to go:</strong> {{ $task->location }}</div>
<div><strong>Time Estimate:</strong> {{ $task->time_estimate }}</div>
</div>
@endforeach
<div class="mt-2">{{$tasks -> links()}}</div>
</x-layout>