×
Assign Post
Recipient:
@php $companyId = getSelectedCompany(); $company_users = get_company_users($companyId); @endphp
Select User
@foreach($company_users as $company_user)
{{$company_user->user->name}}
@endforeach
Message:
Send
×
Move
Conversation moved:
Confirm
×
Reply to multiple
Reply
×
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
{{$result->name}}
@endforeach @endif