@extends('layouts.main') @section('page-title') {{ __('Dashboard') }} @endsection @section('page-breadcrumb') {{ __('Project')}} @endsection @section('content')
layer

{{Auth::user()->ActiveWorkspaceName()}}

{{__('Optimizes project management with task tracking, timelines, and real-time progress updates.') }}

{{ $totalProject }}

{{ __('Total Task') }}

{{ $totalTask }}

{{ __('Total Bug') }}

{{ $totalBugs }}

{{ __('Total User') }}

{{ $totalMembers }}

{{ __('Tasks') }}
{{ $completeTask }} {{ __('Tasks completed out of') }} {{ $totaltasks }}
@forelse($tasks as $task) @if (Auth::user()->hasRole('client') || Auth::user()->hasRole('client')) @endif @empty @include('layouts.nodatafound') @endforelse
@php($due_date = '' . date('Y-m-d', strtotime($task->due_date)) . ' ') {{ __('Due Date') }} : {!! $due_date !!} {{ __('Status') }}
@if ($task->complete == '1') {{ __($task->status) }} @else {{ __($task->status) }} @endif
{{ __('Project') }}
{{ $task->project->name }}
{{ __('Assigned to') }}
@foreach ($task->users() as $user) {{ isset($user->name) ? $user->name : '-' }} @endforeach
{{ __('Tasks Overview') }}
{{ __('Project Status') }}
{{ __('On Going') }}
{{ __('On Hold') }}
{{ __('Finished') }}
@foreach ($arrProcessPer as $index => $value)
{{ $value }}%

{{ __($arrProcessLabel[$index]) }}

@endforeach
@endsection @push('scripts') @endpush