{{ __('Setup Instructions') }}

{{ __('SMS Gateway Setup') }}

{{ __('You will need to configure your SMS Gateway to forward all the incoming messages to below URL.') }}

{{ route('receive', config('app.settings.auth_key')) }}

{{ __('You can setup a GET or a POST call and below is the parameters that you will need to configure') }}

@foreach([ 'to' => __('Phone number with country code to which message is sent'), 'from' => __('Phone number with country code from which message is sent'), 'msg' => __('Actual content of the message sent'), 'uuid' => __('Unique ID of the message') ] as $parameter => $detail) @endforeach
{{ __('Parameter') }} {{ __('Description') }}
{{ $parameter }} {{ $detail }}

{{ __('Cron Setup') }}

{{ __('Setup a CRON job that runs every 30 minutes. Below is the CRON command that you can use.') }}

wget -O /dev/null -o /dev/null {{ route('cron', config('app.settings.cron_password')) }}