@extends('layouts.main') @section('title', 'Okis 3.0 | Alle Kunden') @section('content')
@includeIf('layouts.components.card_header', [ 'title_h2' => 'Kundenverwaltung', 'route' => 'customers.create', 'static_btn' => 'neuen Kunden anlegen', ]) @includeIf('layouts.components.table_infinity_scroll', [ 'model' => $customer_model, 'models' => $customers, 'thead' => [ [ [ 'name' => 'ID', 'sortable_id' => 'id', 'width' => '5' ], [ 'name' => 'Typ.', 'sortable_id' => 'type', 'width' => '10' ], [ 'name' => 'Ku.Nr', 'sortable_id' => 'KuNr', 'width' => '10' ], [ 'name' => 'Firma', 'sortable_id' => 'company', 'width' => '' ], [ 'name' => 'Ort', 'width' => '' ], ], ] ])
@endsection