Basic Info
Error!
Qualification
Tell about your work, job, and other qualification.
@foreach ($data->qualifications as $qualification )
@endforeach
Major Subject :
{{$qualification->major}}
Institut Name :
{{$qualification->institution_name}}
Degree : {{$qualification->degree}}
Passing Year :
{{$qualification->passing_year}}
Client's Feedback
@foreach ($feedbacks as $feedback)
@php
$job = \App\Models\job::where('id',$feedback->job_id)->first();
$clientid = $job->user_id;
$client = \App\Models\User::where('id',$clientid)->first();
@endphp
{{$client->full_name}}
@if($feedback->feedback == null)No Feedback from this client
@else{{$feedback->feedback}}
@endif @endforeachComment
{{$data->comment}}
{{--
--}}
{{-- Services
-
@if(!empty($services))
@foreach ($services as $service)
- ({{$loop->index+1}}) {{$service->title}} @endforeach @else
- no service @endif
Experience
Tell about your work, job, and other experience.
@foreach ($data->experiences as $exp )
@endforeach
Company Name : {{$exp->company_name}}
Role : {{$exp->role}}
Address : {{$exp->address}}
TO : {{$exp->to}}
From : {{$exp->from}}
Certificates
Tell about your work, job, and other certificates.
@foreach ($data->certificates as $cer )
@endforeach
Course Name : {{$cer->course_name}}
Institut Name : {{$cer->institution}}
To : {{$cer->institution_to}}
From : {{$cer->institution_from}}
@if($cer->course_image ==null)
@else
@endif
}})
Services
Error!