{{$customers->withQueryString()->links()}}
                    
                    
                        
                            
                                | # | 
                                Customer Name | 
                                Profile Photo | 
                                Phone Number | 
                                City | 
                                Township | 
                                Address | 
                                 | 
                            
                        
                        
                            @forelse ($customers as $key => $customer)
                            
                                | {{$key + $customers->firstItem()}} | 
                                {{$customer->name}} | 
                                
                                    @if ($customer->image)
                                         
                                    @else
                                         
                                    @endif
                                 | 
                                {{$customer->phone_number}} | 
                                {{$customer->CustomerAddress->city->name ?? '-' }} | 
                                {{$customer->CustomerAddress->township->name ?? '-'}} | 
                                {{$customer->CustomerAddress->address ?? '-'}} | 
                                
                                    
                                 | 
                            
                            @empty
                                No customer Found
                            @endforelse
                        
                    
                    
                        {{$customers->withQueryString()->links()}}