@extends('layouts.app') @section('content')
{{translate('Export Customers')}}

{{translate('Customers')}}

@foreach($customers as $key => $customer) @endforeach
# {{translate('Name')}} {{translate('Email Address')}} {{translate('Phone')}} {{translate('Wallet Balance')}} {{translate('Created')}} {{translate('Options')}}
{{ $loop->index + $customers->firstItem() }} @if($customer->user->banned == 1) @endif {{$customer->user->name}} {{$customer->user->email}} {{$customer->user->phone}} {{ single_price_new($customer->user->balance)}} {{ $customer->created_at->format('d-m-Y h:i:s A') ?? null }}
{{ $customers->appends(request()->input())->links() }}
@endsection @section('script') @endsection @section('modal') @endsection