@extends('app_admin') @section('title', $user->name.' Profile | Luxury Concierge') @section('content')
  • {{ $user->first_name.' '.$user->last_name }}

    {{ $user->gender }}
    @if($user->date_of_birth)
    {{ date('F d, Y', strtotime($user->date_of_birth)) }}
    @endif
  • @if($user->phone || $user->cell_phone)
  • @if($user->phone && $user->cell_phone) {!! phone_number($user->cell_phone).' / '.phone_number($user->phone) !!} @elseif($user->phone) {!! phone_number($user->phone) !!} @else {!! phone_number($user->cell_phone) !!} @endif

  • @endif
  • {{ $user->email }}

Total of requests {{ $user->active_concierge_requests()->count() }}
@if($user->is_admin() && $user->rateable)
Average Rating @if($user->concierge_rating()) {{ number_format($user->concierge_rating(), 1, '.', '') }} @else No rating @endif
@endif
Last Time Online @if($user->online_status == "offline") @else {{ $user->online_status }} @endif
@endsection @section('script') @endsection