@extends('layouts.app') @section('title', trans('settings.task_and_checklist_title')) @section('plugin-styles') @stop @section('content')
@include('layouts.partials.single-page-header', [ 'hide_content_header' => true, ]) @include('checklist::checklist.dashboard.progress') @include('checklist::checklist.dashboard.filter')
@include('checklist::checklist.tasks', ['tasks' => $checklists])
@include('checklist::checklist.lists') @stop @section('panel-content') @if(auth()->user()->can('create', Modules\Checklist\Entities\Checklist::class)) @include('checklist::checklists.form-collaborator') @endif @stop @section('footer-script') @php $route_prefix = 'checklists'; @endphp @include('checklist::scripts.frontend') @include('checklist::scripts.comment') @stop