@if(count($tasks))
@foreach($tasks as $task)
{{$task->title}} |
{{$task->TaskPriority->name}} |
{{$task->TaskCategory->name}} |
{{\App\Location::find($task->location_id)->name}} |
{!!getTaskStatus($task)!!} |
{{$task->progress}} %
|
{{showDate($task->start_date)}} |
{{showDate($task->due_date)}} |
{{--
@if($type == 'starred')
@endif
| --}}
@endforeach
@else
{{trans('messages.no_data_found')}} |
@endif