@extends('buyers_sellers.layout2.master') @section('title', 'Edit Profile') @section('content')
{{ $data->full_name }} Profile

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
Service Status
  • Approve service {{$approve}}
  • Pending service{{ $pending }}
  • Decline service {{ $decline }}
{{--
Qualification
@foreach ($data->qualifications as $qualification)
  • Major Subject
    {{ $qualification->major }}
  • Institut Name
    {{ $qualification->institution_name }}
  • Degree
    {{ $qualification->degree }}
  • Passing Year
    {{ $qualification->passing_year }}
@endforeach
--}}
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
@foreach ($data->certificates as $cer )
  • Course Name
    {{$cer->course_name}}
  • Institut Name
    {{$cer->institution}}
  • To
    {{$cer->institution_to}}
    From
    {{$cer->institution_from}}
@endforeach
Comment

{{$data->comment}}

Services
{{--

Services

--}}
{{--
    --}} @if(!empty($services)) @foreach ($services as $service)

    ({{$loop->index+1}}) {{$service->title}}

    @endforeach @else

    no service

    @endif {{--
--}}
@endsection @section('scripts') @endsection