58 lines
No EOL
1.9 KiB
PHP
Executable file
58 lines
No EOL
1.9 KiB
PHP
Executable file
@extends('layouts.layout-2')
|
|
|
|
@section('content')
|
|
|
|
<h4 class="font-weight-bold py-3 mb-4">
|
|
{{ __('Anfragen') }}
|
|
</h4>
|
|
|
|
<div class="card">
|
|
<div class="card-datatable table-responsive">
|
|
<table class="datatables-leads table table-striped table-bordered">
|
|
|
|
<thead>
|
|
<tr>
|
|
<th style="max-width: 60px;"> </th>
|
|
<th>{{__('LeadID')}}</th>
|
|
<th>{{__('KundenID')}}</th>
|
|
<th>{{__('Vorname')}}</th>
|
|
<th>{{__('Nachname')}}</th>
|
|
<th>{{__('Anfrage-Datum')}}</th>
|
|
<th>{{__('Sachbearbeiter')}}</th>
|
|
<th>{{__('Status')}}</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$( document ).ready(function() {
|
|
$('.datatables-leads').dataTable({
|
|
"processing": true,
|
|
"serverSide": true,
|
|
"ajax": '{!! route('data_table_leads') !!}',
|
|
"order": [[ 1, "desc" ]],
|
|
"columns": [
|
|
{ data: 'action_edit', orderable: false, searchable: false},
|
|
{ data: 'id', name: 'id' },
|
|
{ data: 'customer_id', name: 'customer_id' },
|
|
{ data: 'customer.firstname', name: 'customer.firstname' },
|
|
{ data: 'customer.name', name: 'customer.name' },
|
|
{ data: 'request_date', name: 'request_date' },
|
|
{ data: 'sf_guard_user.last_name', name: 'sf_guard_user.last_name', searchable: false },
|
|
{ data: 'status.name', name: 'status.name' },
|
|
|
|
],
|
|
"bLengthChange": false,
|
|
"iDisplayLength": 100,
|
|
"language": {
|
|
"url": "/js/German.json"
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
|
|
|
|
@endsection |