From bffcca9b047bc5e38c488aec1e166a81c66f5658 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Thu, 17 Jun 2021 16:24:33 +0200 Subject: [PATCH] Show project name in the tasks table --- .../ninja2020/components/livewire/tasks-table.blade.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/resources/views/portal/ninja2020/components/livewire/tasks-table.blade.php b/resources/views/portal/ninja2020/components/livewire/tasks-table.blade.php index db25d31225..d90820f8fc 100644 --- a/resources/views/portal/ninja2020/components/livewire/tasks-table.blade.php +++ b/resources/views/portal/ninja2020/components/livewire/tasks-table.blade.php @@ -20,6 +20,11 @@ {{ ctrans('texts.description') }} + + + {{ ctrans('texts.project') }} + + {{ ctrans('texts.status') }} @@ -38,6 +43,9 @@ {{ \Illuminate\Support\Str::limit($task->description, 80) }} + + {{ optional($task->project)->name }} + {{ optional($task->status)->name }}