i am working on pomodoro technique project. In this project i have two types task completed task and incomplete task. we assign time to specific task and start timmer when its time end it become complete task. So i want to find percentage of completed task mean how mant task completed.
$this->taskPercentage[] = number_format((Project::GetProjectTaskTimeByProjectId($project->id, $request->date)/(($totalIncompleteTask === 0 ) ? 1 : $totalIncompleteTask)),0);
iam using this technique but its not correct kindly guide melara
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community