@extends('frontend.layout.master') @section('site_title',__('Profile Details')) @section('style') @endsection @section('content')
@if(moduleExists('CoinPaymentGateway'))@else@endif
@include('frontend.profile-details.profile')
{{ site_currency_symbol() ?? '' }}

{{ float_amount_with_currency_symbol($total_earning->total_earning ?? 0) }}

{{ __('Total Earned') }}

{{ __('complete order') }}

{{ $complete_orders_in_total ?? '' }}

{{ __('Order Completed') }}

{{ __('active order') }}

{{ $active_orders_count ?? __('No Active Orders') }}

{{ __('Active Orders') }}

@if(get_static_option('project_enable_disable') != 'disable') @include('frontend.profile-details.project') @endif @include('frontend.profile-details.experience') @include('frontend.profile-details.education') @include('frontend.profile-details.skill')
@if($complete_orders->count() >= 1)

{{ __('Reviews') }}

@foreach($complete_orders as $order) @php $rating = \App\Models\Rating::where('order_id',$order->id)->where('sender_type',1)->first() @endphp @if($rating)
{{ $rating->rating }}
@if($rating?->order?->project)

{{ $rating?->order?->project?->title }}

@else

{{ $rating?->order?->job?->title }}

@endif
{{ __('Earned') }}
{{ float_amount_with_currency_symbol($rating->order?->payable_amount) }}
{{ __('Reviewed by') }}
{{ $rating->order?->user?->fullname }}
{{ __('Reviewed') }}
{{ $rating->created_at->toFormattedDateString() }}

{{ $rating->review_feedback }}

@endif @endforeach
@endif @include('frontend.profile-details.all-portfolio')
@include('frontend.profile-details.add-portfolio') @include('frontend.profile-details.edit-portfolio')
@endsection @section('script') @include('frontend.profile-details.profile-details-js') @endsection