{{ cleanLang(__('lang.progress')) }}
@if(auth()->user()->is_team) @if($project->project_progress_manually == 'yes')
{{ cleanLang(__('lang.manually_set_progress')) }}
@else
{{ cleanLang(__('lang.task_based_progress')) }}
@endif @else
{{ cleanLang(__('lang.project_progress')) }}
@endif
@if($project->project_active_state == 'archived' && runtimeArchivingOptions())
@lang('lang.this_project_is_archived')
@endif
{{ cleanLang(__('lang.progress')) }}
{{ cleanLang(__('lang.tasks')) }}
30%

@if(auth()->user()->is_team)
{{ $project->client_company_name }}
@foreach($contacts as $contact) user @endforeach
@endif
{{ cleanLang(__('lang.assigned')) }}
@foreach($project->assigned as $team) user @endforeach @if($project->assigned()->count() == 0) --- @endif
@if(auth()->user()->is_team)
{{ cleanLang(__('lang.project_manager')) }}
@foreach($project->managers as $team) user @endforeach @if($project->managers()->count() == 0) --- @endif
@endif

{{ cleanLang(__('lang.start_date')) }}
{{ runtimeDate($project->project_date_start) }}
{{ cleanLang(__('lang.category')) }}
{{ $project->category_name }}
{{ cleanLang(__('lang.due_date')) }}
{{ runtimeDate($project->project_date_due) }}
{{ cleanLang(__('lang.status')) }}
{{ runtimeLang($project->project_status) }}

@if(config('visibility.project_billing_summary'))
{{ cleanLang(__('lang.billing_type')) }}
@if($project->project_date_start == 'hourly')
{{ cleanLang(__('lang.hourly')) }}
@else
{{ cleanLang(__('lang.fixed_fee')) }}
@endif
{{ cleanLang(__('lang.estimated_hours')) }}
{{ $project->project_billing_estimated_hours }} {{ strtolower(__('lang.hrs')) }}
{{ cleanLang(__('lang.rate')) }}
{{ runtimeMoneyFormat($project->project_billing_rate) }}
{{ cleanLang(__('lang.time_spent')) }}
{{ $payload['time_logged'] }}
@endif @if(config('settings.project_permissions_view_invoices'))

{{ cleanLang(__('lang.all_invoices')) }} {{ runtimeMoneyFormat($project->sum_invoices_all) }}
@if($project->sum_invoices_all > 0)
@else
@endif
{{ cleanLang(__('lang.paid_invoices')) }} {{ runtimeMoneyFormat($project->sum_invoices_paid) }}
{{ cleanLang(__('lang.due_invoices')) }} {{ runtimeMoneyFormat($project->sum_invoices_due) }}
{{ cleanLang(__('lang.overdue_invoices')) }} {{ runtimeMoneyFormat($project->sum_invoices_overdue) }}
@endif @if(config('visibility.project_show_custom_fields'))

@foreach($fields as $field) @if($field->customfields_show_project_page == 'yes')
{{ $field->customfields_title }}
{{ strip_tags(customFieldValue($field->customfields_name, $project, $field->customfields_datatype)) }}
@endif @endforeach @if(config('app.application_demo_mode'))
Demo Info
These are custom fields. You can change them or create your own.
@endif
@endif