×
Assign Post
@php $companyId = getSelectedCompany(); $company_users = get_company_users($companyId); @endphp
×
Move
×
Reply to multiple
×

Canned Responses

    @php $companyId = getSelectedCompany(); $canned_response = \App\Models\CompanyMeta::where('company_id', $companyId)->where('key', 'canned_responses')->get(); $email_signature = \App\Models\CompanyMeta::where('company_id', $companyId)->where('type', 'Email Signature')->first()?->value; @endphp @if(count($canned_response) > 0) @foreach($canned_response as $index => $value) @php $result = json_decode($value->value); @endphp
  • @endforeach @endif