@extends('admin.layout') @section('content')

{{ trans('Profile Edit History') }}

@php $getUserRoleData = userRoleData(); $Customers = explode(",",$getUserRoleData->Customers); @endphp

{{ trans('Listing profile edit history') }}

@if (count((array) $errors) > 0) @if($errors->any()) @endif @endif
@if (count((array) $customers) > 0) @foreach ($customers as $key=>$listingCustomers) @endforeach @else @endif
{{ trans('Sn') }} {{ trans('labels.Picture') }} {{ trans('Personal Info') }}
1 @if(!empty($listingCustomers->customers_picture)) @else @endif {{ trans('Name') }}: {{ $listingCustomers->customers_firstname }} {{ $listingCustomers->customers_lastname }}
{{ trans('labels.DOB') }}: {{ $listingCustomers->customers_dob }}
{{ trans('labels.Email') }}: {{ $listingCustomers->customers_email_address }}
{{ trans('labels.Telephone') }}: {{ $listingCustomers->customers_telephone }}
{{ trans('Alternate Mobile') }}: {{ $listingCustomers->alternate_mobile }}
{{ trans('labels.Fax') }}: {{ $listingCustomers->customers_fax }}
{{ trans('Registration Date') }}: {{ date('d/m/Y H:i:s', $listingCustomers->created_at) }}
{{ trans('labels.NoRecordFound') }}
@endsection