@push('style')
@endpush
@include('components.table', [
'id' => $id,
'edit' => @$edit, // EDIT TARGET ID
'class' => 'table cell-border hover',
'data' => $data,
'headers' => [
[
'label' => __('table.header.id'),
'target' => 'id',
'dclass' => 'lefted',
],
[
'label' => __('table.header.code'),
'target' => 'code',
],
[
'label' => __('table.header.name'),
'target' => 'name',
'dclass' => 'lefted',
],
[
'label' => __('table.header.address'),
'target' => 'address',
],
[
'label' => __('table.header.city'),
'target' => 'city',
'hclass' => 'city',
'dclass' => 'lefted',
],
[
'label' => 'CAP',
'hclass' => 'cap',
'target' => 'cap',
],
[
'label' => __('table.header.email'),
'hclass' => 'email',
'target' => 'email',
],
[
'label' => __('table.header.phone'),
'hclass' => 'city',
'target' => 'phone',
],
[
'label' => __('table.header.details'),
'target' => 'details_count',
],
[
'label' => __('table.header.orders'),
'target' => 'orders_count',
],
[
'label' => __('table.header.notes'),
'target' => 'notes',
'wclass' => 'notes',
'hclass' => 'notes',
'dclass' => 'notes',
],
[
'label' => __('table.header.account'),
'hclass' => 'handle',
'target' => '_button',
'class' => 'btn btn-success account',
'icon' => 'fa fa-credit-card'
],
[
'label' => __('table.header.stats'),
'hclass' => 'handle',
'target' => '_button',
'class' => 'btn btn-info stats',
'icon' => 'fa fa-bar-chart-o'
],
[
'label' => __('table.header.edit'),
'target' => '_edit',
],
[
'label' => __('table.header.delete'),
'target' => '_delete'
],
]
])
@push('ready')
@endpush