| Project : |
{{ $project->title }} |
| Klant / Client : |
{{ $project->client->name }} |
@if(!empty($project->ref_store))
| Referentie winkel / Reference store : |
{{ $project->ref_store }}
|
@endif
| Bezoekdatum / Date of visit : |
{{ $project->deadline }}
|
| Aanvangstijd bezoek / Visit start time : |
@if(!empty($project->timeBlock))
{{ $project->timeBlock->visit_time }}
@endif
|
| Monteur / Mechanic : |
@if(!empty($project->driver))
{{ $project->projectDriver->name }}
@endif
|
| Eindgebruiker / End user : |
@if(!empty($project->endUser))
@php
$str = $project->endUser->name;
$str .= !empty($project->endUser->street) ? ' - ' . $project->endUser->street : '';
$str .= !empty($project->endUser->house_number) ? ' - ' . $project->endUser->house_number : '';
$str .= !empty($project->endUser->zip_code) ? ' - ' . $project->endUser->zip_code : '';
$str .= !empty($project->endUser->city) ? ' - ' . $project->endUser->city : '';
$str .= !empty($project->endUser->email) ? ' - ' . $project->endUser->email : '';
$str .= !empty($project->endUser->phone) ? ' - ' . $project->endUser->phone : '';
@endphp
{{ $str }}
@endif
|
{{--
| {{ __('Google maps address') }} : |
@if(!empty($project->endUser))
{{ $project->endUser->gml }}
@endif
|
--}}
| Klacht volgens klant / Complaint according to customer : |
{{ $project->complaint->customer_complaint }}
|
@php
$complaints = json_decode($project->complaint->complaints);
@endphp
@for($i = 1; $i <= 4; $i++)
@if(!empty($complaints->{'complaint' . $i}->complaint))
| Klacht {{ $i }} / Complaint {{ $i }} : |
{{ $project->complaint->complaint($i) }}
|
| Oorzaak klacht / Cause of complaint : |
{{ __($project->complaint->complaintSubject($i)) }}
|
| Oplossing / Solution : |
{{ $project->complaint->complaintSolution($i) }}
|
| Probleem opgelost / Problem solved : |
{{ __($project->complaint->complaintSolved($i)) }}
|
| Klacht gegrond? / Complaint justified? : |
{{ __($project->complaint->complaintJustified($i)) }}
|
@if($project->complaint->complaintJustifiedDetails($i))
| Klacht gegrond details / Complaint justified details : |
{{ $project->complaint->complaintJustifiedDetails($i) }}
|
@endif
@endif
@endfor
| Oplossing / Solution : |
{{ $project->complaint->solution }}
|
{{--
| Extra gewerkte tijd na een uur / Extra time worked after one hour : |
{{ $project->complaint->extra_time }}
|
--}}
| Is de woning schadevrij achtergelaten? / Was the property left undamaged? : |
{{ __($project->complaint->solved) }}
|
{{--
| {{ __('Money received from End User') }} : |
{{ __($project->complaint->money_received) }}
|
--}}
{{--
| {{ __('Amount received from End User') }} {{ '(€)' }} : |
{{ $project->complaint->amount_received }}
|
--}}
{{-- @if (!empty($project->complaint->discount))
| {{ __('Extra / discount') }} {{ '(€)' }} |
{{ $project->complaint->discount }}
|
@endif
@if (!empty($project->complaint->reason_discount))
| {{ __("Reason 'extra / discount'") }} |
{{ $project->complaint->reason_discount }}
|
@endif --}}
{{--
| {{ __('Materials / external services') }} : |
{{ $project->complaint->materials }}
|
--}}
| Handtekening voor goedkeuring eindgebruiker / Signature for end user approval : |
{!! $project->complaint->signature_report !!}
|