@extends('Layouts.dashboardLayout') @section('content')
Dashbaord
All Projects
All Unfinished Tasks
List of all incomplete 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')}}%
{{--
completion_status ? 'disabled':'')}}>
--}}
{{--Create task modal--}}
Add Task
×
Fill in the details to add task
Task Name
Description
Expected Start Date
Expected End Date
Quotation Prepared and Sent to client?
Select an Option
Yes
No
Client's Name
Client's email address
Quotation Approved?
Select an Option
Yes
No
Estimated Amount on Quatation
{{--create task modal end--}} @include('includes.alerts') @endsection @section('script') @endsection('script')