@extends('layouts.app') @section('title', 'All Tasks') {{-- Custom CSS --}} @push('css') @endpush @section('content')

Manage Tasks

Add New Task
{{-- Loop for task-related tabs --}} @foreach (['all' => $allTasks, 'today' => $todayTasks, 'overdue' => $overdueTasks, 'property' => $properties] as $tab => $tasks)
@if ($tab === 'property') @else @endif
@endforeach {{-- Contacts Tab --}}
{{-- Agents Tab --}}
@endsection {{-- Custom JS --}} @push('js') @endpush