@extends('Layouts.dashboardLayout') @section('content')
All Unfinished Tasks

@foreach($tasks as $task) @endforeach {{-- Mark as Completed--}}
Task name Project Expected Start Time Expected End Time Opened By completion Status Action
{{$task->task_name}} {{$task->project->name}} {{$task->expected_start_date}} {{$task->expected_finish_date}} {{$task->user->email}} @if($task->payment_status == false) Incompleted @else Completed @endif {{number_format((($task->taskCount->process_count - ($task->skipped != null ? count( $task->skipped) : 0))/($task->skipped != null ? 8 - count( $task->skipped) : 8))*100, '2')}}% {{-- --}}
{{--Create task modal--}} {{--create task modal end--}} @include('includes.alerts') @endsection @section('script') @endsection('script')