@extends('layouts.app') @section('content')
@include('project.project-menu')

{{$task->name}}

{!!$task->description!!}

@if($task->is_approved ==1)
{{Techsaga::getFullName($task->approved_by)}} Approved at
{{date('d, M, Y h:i A',strtotime($task->approved_at))}}
@endif @if($assigned_by !=null)
{{$assigned_by->first_name.' '.$assigned_by->last_name}} Assigned at
{{date('d, M, Y h:i A',strtotime($assigned_by->assigned_at))}}
@endif @if($created_by !=null)
{{$created_by->first_name.' '.$created_by->last_name}} created task
{{date('d, M, Y h:i A',strtotime($created_by->created_at))}}
@endif
@if($task->is_approved ==0) @if($task->is_completed ==1 ) @if(auth()->user()->role_id ==1 || $task->created_by == auth()->user()->id || $task->assigned_by == auth()->user()->id )
@endif @endif @endif
@if(count($task_comment) > 0) @foreach($task_comment as $item)
{{$item->first_name.' '.$item->last_name}} {{date('d, M, Y h:i A',strtotime($item->created_at))}}

{{$item->comment}}

@endforeach @endif

@csrf
Add Comment
subject