@extends('layouts.admin') @section('style') @endsection @section('content')

{{ $customer->name }}

@if ($customer->email_verified_at) @else @endif @if ($customer->is_block) @else @endif

{{ __('messages.Register Date') }} : {{ date('Y-m-d' ,strtotime($customer->created_at) ) }}

{{ __("messages.Account activation date") }} : @if ($customer->email_verified_at) {{ date('Y-m-d' ,strtotime( $customer->email_verified_at)) }} @else {{ __('messages.Inactive') }} @endif

{{ __('messages.Number of conversations') }} : {{$customer->chats_customer_count}}

{{ __('messages.Number of ads') }} : {{$customer->ads_count}}

{{ __('messages.Contact Information') }}
{{ __("messages.Email") }} {{ $customer->email }}
{{ __("messages.Mobile") }} {{ $customer->mobile }}
{{ __("messages.Country") }} @php $customer_country_code = $customer->code_country @endphp @if (app()->getLocale() == "ar") {{ $customer_country_code }} - {{ $countries_codes->$customer_country_code->name_ar }} @else {{ $customer_country_code }} - {{ $countries_codes->$customer_country_code->name_en }} @endif
@include('admin.inc.modal-action') @endsection @section('script') @endsection