24 lines
634 B
PHP
Raw Normal View History

2022-06-01 10:15:55 +03:00
<x-layouts.admin>
<x-slot name="title">{{ trans_choice('general.customers', 2) }}</x-slot>
2017-09-14 22:21:00 +03:00
2022-06-01 10:15:55 +03:00
<x-slot name="favorite"
title="{{ trans_choice('general.customers', 2) }}"
icon="person"
route="customers.index"
></x-slot>
2017-09-14 22:21:00 +03:00
2022-06-01 10:15:55 +03:00
<x-slot name="buttons">
<x-contacts.index.buttons type="customer" />
</x-slot>
2017-09-14 22:21:00 +03:00
2022-06-01 10:15:55 +03:00
<x-slot name="moreButtons">
<x-contacts.index.more-buttons type="customer" />
</x-slot>
2019-11-16 10:21:14 +03:00
2022-06-01 10:15:55 +03:00
<x-slot name="content">
<x-contacts.index.content type="customer" :contacts="$customers" />
</x-slot>
2017-09-14 22:21:00 +03:00
2022-06-01 10:15:55 +03:00
<x-contacts.script type="customer" />
</x-layouts.admin>