@extends('layouts.app')
@section('title', 'My Tasks - ' . config('app.name'))
@section('header-left')
@endsection
@section('content')
@php
$apiUrl = url('/api/v1/tasks/my') . ($_GET ? '?' . http_build_query(request()->query()) : '');
@endphp
{{-- View toggle: List | Calendar --}}
@if (($currentView ?? 'list') === 'list')
Loading tasks…
-
No tasks match your filters.
@else
@endif
@include('partials.task-panel', ['projectId' => null])
@push('scripts')
@include('partials.task-panel-script')
@endpush
@endsection