mirror of
https://github.com/10h30/MoveMate.git
synced 2026-07-13 03:36:21 +09:00
Add manual authentication, create, read, update task
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
|
||||
<x-layout>
|
||||
<x-slot:heading>{{ $task->name }}</x-slot:heading>
|
||||
|
||||
|
||||
<div>
|
||||
<div class="text-lg mb-4"> {{ $task->description }}</div>
|
||||
<div><strong>Where to go:</strong> {{ $task->location }}</div>
|
||||
<div><strong>Time Estimate:</strong> {{ $task->time_estimate }} hour</div>
|
||||
<div><strong>Category:</strong> {{ $task->category->name }}</div>
|
||||
<div><strong>Owner:</strong> {{ $task->user->name }}</div>
|
||||
|
||||
</div>
|
||||
<div class="mt-5">
|
||||
<a href="/task/{{ $task->id }}/edit" class="text-sm text-blue-600 dark:text-blue-500 hover:underline">Edit</a>
|
||||
</div>
|
||||
</x-layout>
|
||||
Reference in New Issue
Block a user