@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'
])
@php
$groupDescription = $groupUid ? $currentGroup->description : '';
@endphp
@if ($groupUid)
{{
__tr('Back to Contact Groups') }}
{{
__tr('Back to Contacts') }}
@endif
@if(hasVendorAccess('manage_contacts', 'add_edit_contacts'))
@endif
@if (!$groupUid)
@if(hasVendorAccess('manage_contacts', 'export_contacts'))
@endif
@if(hasVendorAccess('manage_contacts', 'import_contacts'))
@endif
@endif
@if(!hasVendorAccess('manage_contacts', 'add_edit_contacts')
and !hasVendorAccess('manage_contacts', 'export_contacts')
and !hasVendorAccess('manage_contacts', 'import_contacts'))
@endif
{{-- import contacts --}}
{{ __tr('Estimated time remaining') }}
{{ __tr('Please wait ... contacts import is in progress') }}