91 lines
3.7 KiB
PHP
91 lines
3.7 KiB
PHP
@extends('layouts.layout-2')
|
|
|
|
@section('content')
|
|
<h4 class="font-weight-bold py-2 mb-2">
|
|
{{ __('navigation.my_clients') }}
|
|
</h4>
|
|
|
|
<div class="card">
|
|
<div class="card-datatable table-responsive">
|
|
<div class="ml-4">
|
|
<!--<a href="{{ route('admin_lead_edit', ['new']) }}" class="btn btn-sm btn-primary">{{__('Neuen Berater erstellen')}}</a> -->
|
|
</div>
|
|
<table class="datatables-customers table table-striped table-bordered" id="datatables-customers">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>{{__('E-Mail')}}</th>
|
|
<th>{{__('Anrede')}}</th>
|
|
<th>{{__('Firma')}}</th>
|
|
<th>{{__('Vorname')}}</th>
|
|
<th>{{__('Nachname')}}</th>
|
|
<th>{{__('PLZ')}}</th>
|
|
<th>{{__('Stadt')}}</th>
|
|
<th>{{__('Land')}}</th>
|
|
<th>{{__('Käufe')}}</th>
|
|
<th>{{__('Newsletter')}}</th>
|
|
<th>{{__('erstellt')}}</th>
|
|
<th>{{__('Status')}}</th>
|
|
<th>{{__('ID Kunden')}}</th>
|
|
<th>WP</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
<div class="mt-4 ml-4">
|
|
<!-- <a href="{{ route('admin_lead_edit', ['new']) }}" class="btn btn-sm btn-primary">{{__('Neuen Berater erstellen')}}</a> -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$( document ).ready(function() {
|
|
|
|
var oTable = $('#datatables-customers').DataTable({
|
|
"processing": true,
|
|
"serverSide": true,
|
|
ajax: {
|
|
url: '{!! route( 'user_customer_datatable') !!}',
|
|
data: function(d) {
|
|
// d.filter_member_id = $('select[name=filter_member_id]').val();
|
|
// d.filter_customer_member = $('select[name=filter_customer_member]').val();
|
|
}
|
|
},
|
|
"order": [[0, "desc" ]],
|
|
"columns": [
|
|
{ data: 'id', searchable: false},
|
|
{ data: 'billing_email', name: 'billing_email' },
|
|
{ data: 'billing_salutation', name: 'billing_salutation' },
|
|
{ data: 'billing_company', name: 'billing_company' },
|
|
{ data: 'billing_firstname', name: 'billing_firstname' },
|
|
{ data: 'billing_lastname', name: 'billing_lastname' },
|
|
{ data: 'billing_zipcode', name: 'billing_zipcode' },
|
|
{ data: 'billing_city', name: 'billing_city' },
|
|
{ data: 'billing_country_id', name: 'billing_country_id' },
|
|
{ data: 'orders', name: 'orders' },
|
|
{ data: 'subscribed', name: 'subscribed' },
|
|
{ data: 'first_created_at', name: 'first_created_at' },
|
|
{data: 'status', name: 'status', searchable: false, orderable: false },
|
|
{ data: 'number', name: 'number'},
|
|
{ data: 'extras', name: 'extras', searchable: false, orderable: false},
|
|
],
|
|
"bLengthChange": false,
|
|
"iDisplayLength": 50,
|
|
"language": {
|
|
"url": "/js/German.json"
|
|
}
|
|
});
|
|
/* $('#filter_member_id').on('change', function(){
|
|
oTable.draw();
|
|
});
|
|
$('#filter_customer_member').on('change', function(){
|
|
oTable.draw();
|
|
});
|
|
*/
|
|
|
|
});
|
|
</script>
|
|
@endsection
|
|
|