@extends('layouts.app') @section('title', 'My Tasks - ' . config('app.name')) @section('header-left')

My Tasks

Today: logged
@endsection @section('content') @php $apiUrl = url('/api/v1/tasks/my') . ($_GET ? '?' . http_build_query(request()->query()) : ''); @endphp
{{-- View toggle: List | Calendar --}}
List Calendar
@if (($currentView ?? 'list') === 'list')
Loading tasks…
@else @endif @include('partials.task-panel', ['projectId' => null]) @push('scripts') @include('partials.task-panel-script') @endpush @endsection