@extends('admin.layouts.master') @section('title', 'Edit Profile') @section('content')

Basic Info

{{$data->full_name}}
{{$data->address}}
{{$data->email}}
{{$data->phone_number}}
{{--
{{$data->birth_date}}
--}}
{{--
    --}}
    @if($data->Proof) @foreach($data->Proof as $photoId) {{ $photoId->file_name }} @endforeach @endif
    {{--
--}} {{--
{{$data->id_prof}}
--}}
{{--

Qualification

Tell about your work, job, and other qualification.

@foreach ($data->qualifications as $qualification )
Major Subject : {{$qualification->major}}
Institut Name : {{$qualification->institution_name}}
Degree : {{$qualification->degree}}
Passing Year : {{$qualification->passing_year}}
@endforeach
--}}

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 @endforeach

Comment

{{$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 )
Company Name : {{$exp->company_name}}
Role : {{$exp->role}}
Address : {{$exp->address}}
TO : {{$exp->to}}
From : {{$exp->from}}
@endforeach

Certificates

Tell about your work, job, and other certificates.

@foreach ($data->certificates as $cer )
Course Name : {{$cer->course_name}}
Institut Name : {{$cer->institution}}
To : {{$cer->institution_to}}
From : {{$cer->institution_from}}
@if($cer->course_image ==null) Responsive image @else Responsive image @endif
@endforeach

Services

@foreach ($data->service as $ser )
{{ $ser->title }}
@endforeach
@endsection @section('scripts') @endsection