@extends('layouts.backend') @section('extraCss') @section('mainContentArea')

Customer

Customer Name Telephone City SPS ACTION
@if($customers->count() > 0) @foreach($customers as $customer) @endforeach @else @endif
First Name Email telephone Is SPS City Action
{{ empty($customer->firstname) ? 'N/A' : $customer->firstname }} {{ empty($customer->email) ? 'N/A' : $customer->email }} {{ empty($customer->telephone) ? 'N/A' : $customer->telephone }} {{ !empty($customer->allSpsInfo->current) ? 'Yes' : 'No' }} {{ !empty($customer->CityInfo) ? $customer->CityInfo->city : 'N/A' }}
No product found!
@if($customers instanceof \Illuminate\Pagination\LengthAwarePaginator) {!! $customers->render() !!} @endif
@endsection @section('extraJs') @endsection