@extends('layouts.app') @section('title', 'Tasks') @section('title-flex')
 Filter:  Open Sent Archived
@endsection @section('content')
@if($tasks->count())
Tasks
@endif
@if($tasks->count()) @foreach($tasks as $task) @include('tasks.parts.row', ['task' => $task, 'activeFilter' => $activeFilter]) @endforeach
{{ (in_array($activeFilter, ['archived'])) ? 'Closed' : 'Created' }} Subject Request {{ (!in_array($activeFilter, ['sent'])) ? 'Creator' : 'Assigned to' }} {{ (!in_array($activeFilter, ['sent', 'archived'])) ? 'Actions' : 'Status' }}
@endif @if($tasks->count() == 0)

You have no tasks

@endif
@endsection @section('js') @include('scripts.tooltips') @endsection