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

{{ trans('labels.Customers') }} {{ trans('labels.ListingAllCustomers') }}...

{{ trans('labels.ListingAllCustomers') }}

@if (count($errors) > 0) @if($errors->any()) @endif @endif
@if (count($customers['result']) > 0) @foreach ($customers['result'] as $key=>$listingCustomers) @endforeach @else @endif
{{ trans('labels.ID') }} {{ trans('labels.Picture') }} {{ trans('labels.PersonalInfo') }} {{ trans('labels.Address') }} {{ trans('labels.Action') }}
{{ $listingCustomers->customers_id }} @if(!empty($listingCustomers->customers_picture)) @else @endif {{ trans('labels.Name') }}: {{ $listingCustomers->customers_firstname }} {{ $listingCustomers->customers_lastname }}
{{-- {{ trans('labels.DOB') }}: {{ $listingCustomers->customers_dob }}
--}} {{ trans('labels.Email') }}: {{ $listingCustomers->email }}
{{ trans('labels.Telephone') }}: {{ $listingCustomers->customers_telephone }}
Country Name : @if($listingCustomers->countries_name != "") countries_name)) }}.png" alt="" width="30px" height="30px"> {{ $listingCustomers->countries_name }} @else N/A @endif
{{-- {{ trans('labels.Fax') }}: {{ $listingCustomers->customers_fax }}
--}} {{-- {{ trans('labels.Devices') }}: --}} {{--@if(count($listingCustomers->devices)>0)--}} {{-- --}} {{--@foreach($listingCustomers->devices as $devices_data)--}} {{----}} {{--@if($devices_data->device_type == 1)--}} {{--{{ trans('labels.IOS') }}--}} {{--@elseif($devices_data->device_type == 2)--}} {{--{{ trans('labels.Android') }}--}} {{--@elseif($devices_data->device_type == 3)--}} {{--{{ trans('labels.Website') }} --}} {{--@endif--}} {{-- --}} {{--@endforeach--}} {{----}} {{--@endif--}}
{{-- {{ trans('labels.Company') }}: {{ $listingCustomers->entry_company }}
--}} {{ trans('labels.Address') }}: @if(!empty($listingCustomers->customers_address)) {{ $listingCustomers->customers_address }}, @endif {{--@if(!empty($listingCustomers->entry_street_address)) --}} {{--{{ $listingCustomers->entry_street_address }},--}} {{--@endif--}} {{--@if(!empty($listingCustomers->entry_city)) --}} {{--{{ $listingCustomers->entry_city }},--}} {{--@endif--}} {{--@if(!empty($listingCustomers->entry_state)) --}} {{--{{ $listingCustomers->entry_state }},--}} {{--@endif--}} {{--@if(!empty($listingCustomers->entry_postcode)) --}} {{--{{ $listingCustomers->entry_postcode }}--}} {{--@endif--}} {{--@if(!empty($listingCustomers->countries_name)) --}} {{--{{ $listingCustomers->countries_name }}--}} {{--@endif --}}
{{ trans('labels.NoRecordFound') }}
@if (count($customers['result']) > 0)
{{$customers['result']->links('vendor.pagination.default')}}
@endif
@endsection