mirror of
https://github.com/grocy/grocy.git
synced 2025-08-20 04:12:59 +00:00
Fixed by PHP-CS-Fixer broken formattings
This commit is contained in:
@@ -99,9 +99,7 @@
|
||||
<tbody class="d-none">
|
||||
@foreach($tasks as $task)
|
||||
<tr id="task-{{ $task->id }}-row"
|
||||
class="@if($task->done == 1) text-muted @endif @if(!empty($task->due_date) && $task->due_date < date('Y-m-d')) table-danger @elseif(!empty($task->due_date) && $task->due_date < date('Y-m-d', strtotime("
|
||||
+$nextXDays
|
||||
days")))
|
||||
class="@if($task->done == 1) text-muted @endif @if(!empty($task->due_date) && $task->due_date < date('Y-m-d')) table-danger @elseif(!empty($task->due_date) && $task->due_date < date('Y-m-d', strtotime('+' . $nextXDays . ' days')))
|
||||
table-warning
|
||||
@endif">
|
||||
<td class="fit-content border-right">
|
||||
@@ -156,7 +154,11 @@
|
||||
@if($task->done == 1) text-muted @endif @if(!empty($task->due_date) && $task->due_date < date('Y-m-d'))
|
||||
overdue
|
||||
@elseif(!empty($task->due_date) && $task->due_date < date('Y-m-d',
|
||||
strtotime("+$nextXDays days")))
|
||||
strtotime('+'
|
||||
.
|
||||
$nextXDays
|
||||
. ' days'
|
||||
)))
|
||||
duesoon
|
||||
@endif
|
||||
</td>
|
||||
|
Reference in New Issue
Block a user