| {{ __('TaskId') }} | {{ __('Tasks') }} | {{ __('Status') }} | {{ __('Actual Progress') }} | {{ __('Planned Progress') }} | {{ __('Planned Start Date') }} | {{ __('Planned End Date') }} | {{ __('Assigned To') }} |
|---|---|---|---|---|---|---|---|
| @if (Session::get('current_revision_freeze') == 1 && Session::get('project_instance') != Session::get('latest_project_instance') && $checkLatestFreezeStatus == 1) {{ $task->id }} @else {{ $task->id }} @endif | {{ $task->text }} | @if (strtotime($task->end_date) < time() && $task->progress < 100) {{ __('Pending') }} @elseif(strtotime($task->end_date) < time() && $task->progress >= 100) {{ __('Completed') }} @else {{ __('In-Progress') }} @endif |
{{ round($task->progress) }}%
|
{{ round($current_Planed_percentage) }}%
|
{{ Utility::site_date_format($task->start_date, \Auth::user()->id) }} | {{ Utility::site_date_format_minus_day($task->end_date, \Auth::user()->id, 1) }} |
@php
if ($task->users != '') {
$users_data = json_decode($task->users);
} else {
$users_data = [];
}
@endphp
@forelse ($users_data as $key => $get_user)
@php
$user_db = DB::table('users')
->where('id', $get_user)
->first();
@endphp
@if ($key < 3)
@if ($user_db->avatar)
|