• {{ __('Admin') }}
  • {{ __('Voicemail Greeting') }}
  • Voicemail Greeting

    {!!Form::open(['route' => 'admin.voicemail_greetings.store', 'method' => 'POST', 'files' => true])!!}
    The Voicemail Greeting is the what the caller hears just before recording their voicemail. Things to consider including in the greeting are:
    1. There is a 60 second limit
    2. The caller can tap the pound key (#) to review their message before hanging up.
    There are two options for the greeting.
    1. Upload a pre-recorded mp3 file which will be played to the caller
    2. Use the computer text-to-voice system to read your greeting text. To enable the text version, simply delete the MP3 file which will reveal the text form field. Then type your greeting in the form and click update.
    @if(file_exists( public_path() . '/voice/greetings/vm_greeting.mp3'))

    Listen: Voicemail Greeting

    Delete Voicemail Greeting file @else
    {{Form::label('optional_greeting_text', 'Optional Greeting text (max 190 characters)', ['class' => 'form-label pt-6 dark:text-slate-300'])}} {{Form::text('optional_greeting_text', $optional_greeting_text ? $optional_greeting_text->message : null, ['class' => 'form-label dark:bg-slate-800 dark:text-slate-300 border-none'],['maxlength' => 190])}}
    @endif

    Upload new file

    {{Form::label('vm_greeting_file', 'Voicemail Greeting file:', ['class' => 'form-label pt-6 dark:text-slate-300'])}} {{Form::file('vm_greeting_file'),['class' => 'border-none']}}
    {!!Form::close()!!}