@lang('project::lang.incompleted_tasks')

{{$project->incomplete_task}}
@if(isset($project->settings['enable_notes_documents']) && $project->settings['enable_notes_documents'])

@lang('project::lang.documents_and_notes')

{{$project->note_and_documents_count}}
@endif @if(isset($project->settings['enable_timelog']) && $project->settings['enable_timelog'])

@lang('project::lang.total_time')

@php $hours = floor($timelog->total_seconds / 3600); $minutes = floor(($timelog->total_seconds / 60) % 60); @endphp {{sprintf('%02d:%02d', $hours, $minutes)}}
@endif @if((isset($project->settings['enable_invoice']) && $project->settings['enable_invoice']) && $is_lead_or_admin)

@lang('sale.total_paid') @lang('project::lang.invoice')

{{$invoice->paid}}
@endif
@if((isset($project->settings['enable_invoice']) && $project->settings['enable_invoice']) && $is_lead_or_admin)

@lang('sale.total_remaining') @lang('project::lang.invoice')

{{$transaction->total - $invoice->paid}}
@endif
@if(!empty($project->description))
{!! $project->description !!}
@endif

{{ucFirst($project->name)}}

@if(isset($project->customer->name)) {{$project->customer->name}} @endif
@if(isset($project->customer->mobile)) @lang('contact.mobile'): {{$project->customer->mobile}} @endif
@lang('business.address'): @if(isset($project->customer->landmark)) {{ $project->customer->landmark }} @endif @if(isset($project->customer->city)) {{ ', ' . $project->customer->city }} @endif @if(isset($project->customer->state)) {{ ', ' . $project->customer->state }} @endif @if(isset($project->customer->country)) {{ ', ' . $project->customer->country }} @endif
@lang('sale.status'): @lang('project::lang.'.$project->status) @if($project->categories->count() > 0)
@lang('category.categories'): @foreach($project->categories as $categories) @if(!$loop->last) {{$categories->name . ','}} @else {{$categories->name}} @endif @endforeach @endif