@php /** * Component : Contact * Controller : ContactController * File : contact.list.blade.php * ----------------------------------------------------------------------------- */ $currentGroup = $groupUid ? $vendorContactGroups->where('_uid', $groupUid)->first() : null; @endphp @extends('layouts.app', ['title' => __tr('Contacts')]) @section('content') @include('users.partials.header', [ 'title' => $groupUid ? __tr('__groupName__ group contacts', [ '__groupName__' => $currentGroup->title ]) : __tr('Contacts'), 'description' => $groupUid ? $currentGroup->description : '', 'class' => 'col-lg-7' ])
@if ($groupUid) {{ __tr('Back to Contact Groups') }} @endif
{{-- import contacts --}}

{{ __tr('You can import excel file with new contacts or existing updated.') }}

{{ __tr('Conventions') }}

{{ __tr('Phone Number') }}

{{ __tr('Phone number treated as unique entity, it should be with country code without prefixing 0 or +, if the phone number is found in the records other information for the same will get updated with data from the excel.') }}

{{ __tr('Group') }}

{{ __tr('Use comma separated group title, make sure groups are already exists into the system. Groups won\'t be deleted, only new groups will be assigned.') }}