@extends('layouts.dashboard') @section('template_title') My Task List @endsection @section('template_fastload_css') @endsection @section('header') My Tasks @endsection @section('breadcrumbs')
  • {{ trans('titles.app') }} chevron_right
  • My Tasks
  • @endsection @section('content') @if (count($tasks) > 0)
    All Incomplete Complete
    @include('tasks/partials/task-tab', ['tab' => 'all', 'tasks' => $tasks, 'title' => 'All Tasks', 'status' => 'is-active']) @include('tasks/partials/task-tab', ['tab' => 'incomplete', 'tasks' => $tasksInComplete, 'title' => 'Incomplete Tasks']) @include('tasks/partials/task-tab', ['tab' => 'complete', 'tasks' => $tasksComplete, 'title' => 'Complete Tasks'])
    @include('dialogs.dialog-delete', ['dialogTitle' => 'Confirm Task Deletion', 'dialogSaveBtnText' => 'Delete']) @else

    Start by creating a task

    @include('tasks.partials.create-task')
    @endif @endsection @section('footer_scripts') @if (count($tasks) > 0) @include('scripts.mdl-datatables') @else @include('scripts.mdl-required-input-fix') @endif @endsection