@extends('layouts.master') @section('page.name', __(":name - Profile", ['name' => $user->name])) @push('css') @endpush @section('page.body')

{{strtoupper($user->name) . ' | ' . __('Profile')}}

@include('profile.includes.profile_cover')

{{__('Verification')}}

  • @if($user->verified_phone) @else @endif {{__('Phone')}}
  • @if($user->verified) @else @endif {{__('Email')}}

{{__('Information')}}

  • ({{$user->ratings()->count()}} {{__('ratings')}})
  • {{$user->created_at->diffForHumans()}} {{__('Registered on')}}
  • {{__('Last seen on')}}
  • {{$user->countSuccessfulTrades()}} {{__('Successful Trades')}}
  • {{DB::table('user_contact')->where('contact_id', $user->id)->where('state', 'trust')->count()}} {{__('Trusted by')}}
  • {{DB::table('user_contact')->where('contact_id', $user->id)->where('state', 'block')->count()}} {{__('Blocked by')}}

{{__('Offers')}}

{{__('Coin')}} {{__('Pay with')}} {{__('Currency')}} {{__('Amount Range')}} {{__('Worth')}} {{__('Coin Rate')}} {{__('Action')}}
{{__('Coin')}} {{__('Pay with')}} {{__('Currency')}} {{__('Amount Range')}} {{__('Worth')}} {{__('Coin Rate')}} {{__('Action')}}

{{__('Reviews')}}

@{{ rating.user.name }} {{__('wrote:')}}
@{{rating.comment}}
@{{ dateDiffForHumans(rating.created_at) }} |

{{__('No more results available!')}}

@endsection @push('data') @endpush