@extends('layouts.app') @section('title', __('app.task_kanban_board') . ' - SEU CRM') @section('content')

{{ __('app.task_kanban_board') }}

{{ __('app.add_task') }}
@if(session('success')) @endif
{{ __('app.new_task') }}
{{ __('app.new_tasks') }}
{{ $tasks->get('todo', collect())->count() }} 0.19%
{{ __('app.todo_tasks') }}
{{ $tasks->get('todo', collect())->count() }} 1.23%
{{ __('app.ongoing_tasks') }}
{{ $tasks->get('in_progress', collect())->count() }} 0.54%
{{ __('app.in_review_tasks') }}
{{ $tasks->get('review', collect())->count() }} 0.16%
{{ __('app.completed_tasks') }}
{{ $tasks->get('completed', collect())->count() }} 0.29%
{{ __('app.new_task') }}
{{ __('app.add_task') }}
@foreach($tasks->get('todo', []) as $task)
#{{ $task->id }} {{ ucfirst($task->priority) }}
{{ $task->title }}
{{ Str::limit($task->description, 80) }}
@if($task->customer)

{{ __("app.customer") }}: {{ $task->customer->name }}

@endif
@if($task->due_date) {{ $task->due_date->format('M d, Y') }} @endif
@if($task->assigned_to)
{{ substr($task->assigned_to, 0, 1) }}
@endif
@endforeach
{{ __('app.todo_task') }}
{{ __('app.add_task') }}
@foreach($tasks->get('todo', []) as $task)
#{{ $task->id }} {{ ucfirst($task->priority) }}
{{ $task->title }}
{{ Str::limit($task->description, 80) }}
@if($task->customer)

{{ __("app.customer") }}: {{ $task->customer->name }}

@endif
@if($task->due_date) {{ $task->due_date->format('M d, Y') }} @endif
@if($task->assigned_to)
{{ substr($task->assigned_to, 0, 1) }}
@endif
@endforeach
{{ __('app.ongoing_task') }}
{{ __('app.add_task') }}
@foreach($tasks->get('in_progress', []) as $task)
#{{ $task->id }} {{ ucfirst($task->priority) }}
{{ $task->title }}
{{ Str::limit($task->description, 80) }}
@if($task->customer)

{{ __("app.customer") }}: {{ $task->customer->name }}

@endif
@if($task->due_date) {{ $task->due_date->format('M d, Y') }} @endif
@if($task->assigned_to)
{{ substr($task->assigned_to, 0, 1) }}
@endif
@endforeach
{{ __('app.in_review_task') }}
{{ __('app.add_task') }}
@foreach($tasks->get('review', []) as $task)
#{{ $task->id }} {{ __("app.in_review_task") }}
{{ $task->title }}
{{ Str::limit($task->description, 80) }}
@if($task->customer)

{{ __("app.customer") }}: {{ $task->customer->name }}

@endif
@if($task->due_date) {{ $task->due_date->format('M d, Y') }} @endif
@if($task->assigned_to)
{{ substr($task->assigned_to, 0, 1) }}
@endif
@endforeach
{{ __('app.completed_task') }}
{{ __('app.add_task') }}
@foreach($tasks->get('completed', []) as $task)
#{{ $task->id }} {{ __("app.completed_task") }}
{{ $task->title }}
{{ Str::limit($task->description, 80) }}
@if($task->customer)

{{ __("app.customer") }}: {{ $task->customer->name }}

@endif
@if($task->due_date) {{ $task->due_date->format('M d, Y') }} @endif
@if($task->assigned_to)
{{ substr($task->assigned_to, 0, 1) }}
@endif
@endforeach
@endsection @push('scripts') @endpush