@svg('emails')
Mon agenda

@lang('View all my tasks')

@if($this->pending_tasks_count)
@lang('Pending')
{{ $this->pending_tasks_count }}
@endif
@lang('Completed')
{{ $this->completed_tasks_count }}
@if($this->overdue_tasks_count)
@lang('Overdue')
{{ $this->overdue_tasks_count }}
@endif
{{-- --}}

@livewire('tasks.tasks-table', [ 'title' => '', 'restrict' => $this->restrict, 'styles' => ['compact', 'header-stronger'], 'hide' => ['filters'], 'loader' => true, 'showPagination' => true ])