@extends('layouts.main')
@section('breadcrumb')
@include('admin.parts.breadcrumb.accounts.show', ['account' => $account])
@endsection
@section('content')
{{ $account->identifier }}
@include('admin.account.parts.tabs')
{{ __('Edit') }}
@if ($account->updated_at)
{{ __('Updated on') }} {{ $account->updated_at->format('d/m/Y') }}
@endif
{{ __('Information') }}
{{ __('SIP Adress') }}: sip:{{ $account->identifier }}
@if ($account->email)
{{ __('Email') }}: {{ $account->email }}
@endif
@if ($account->phone)
{{ __('Phone') }}: {{ $account->phone }}
@endif
@if ($account->passwords()->count() > 0)
{{ __('Password') }}: **********
@endif
{{ __('Space') }}: {{ $account->domain }}
@include('admin.account.parts.badges', ['account' => $account])
{{ __('Manage') }}
email))class="disabled"@endif>
| {{ __('Send an email to the user to reset the password') }} |
|
email))class="disabled"@endif>
| {{ __('Send an email to the user with provisioning information') }} |
|
|
{{ __('Delete') }}
|
|
@if ($account->external){{ __('Edit') }}@else{{ __('Create') }}@endif
{{ __('External Account') }}
@if ($account->external)
@if ($account->external->username)
{{ __('Username') }}: {{ $account->external->username }}
@endif
@if ($account->external->domain)
{{ __('Domain') }}: {{ $account->external->domain }}
@endif
@if ($account->external->password)
{{ __('Password') }}: **********
@endif
@else
{{ __('Empty') }}
@endif
@if ($account->space->carddav_user_credentials)
@if ($account->remainingCardDavCredentialsCreatable->count() > 0)
{{ __('Add') }}
@endif
{{ __('CardDav credentials') }}
| {{ __('CardDav Server') }} |
{{ __('Username') }} |
{{ __('Realm') }} |
{{ __('Algorithm') }} |
|
@if ($account->carddavServers->isEmpty())
| {{ __('Empty') }} |
@else
@foreach ($account->carddavServers as $carddavServer)
{{ $carddavServer->name }}
{{ $carddavServer->uri }}
|
{{ $carddavServer->pivot->username }} |
{{ $carddavServer->pivot->realm }} |
{{ $carddavServer->pivot->algorithm }} |
|
@endforeach
@endif
@endif
{{ __('Devices') }}
| User Agent |
|
@if ($devices->isEmpty())
| {{ __('Empty') }} |
@else
@foreach ($devices as $device)
| {{ $device->user_agent }} |
|
@endforeach
@endif
{{ __('Voicemails') }}
| {{ __('Created') }} |
|
@if ($account->uploadedVoicemails->isEmpty())
| {{ __('Empty') }} |
@endif
@foreach ($account->uploadedVoicemails as $voicemail)
{{ $voicemail->created_at }}
@if ($voicemail->url)
@endif
@if ($voicemail->sip_from)
{{ $voicemail->sip_from }}
@endif
|
@if ($voicemail->url)
@endif
|
@endforeach
{{ __('Add') }}
{{ __('Dictionary') }}
| {{ __('Key') }} |
{{ __('Value') }} |
|
@if ($account->dictionaryEntries->isEmpty())
| {{ __('Empty') }} |
@endif
@foreach ($account->dictionaryEntries as $dictionaryEntry)
| {{ $dictionaryEntry->key }} |
{{ $dictionaryEntry->value }} |
|
@endforeach
@if (space()?->intercom_features)
@if ($account->dtmf_protocol)
{{ __('Add') }}
@else
{{ __('Edit') }}
@endif
{{ __('Actions') }}
@if ($account->dtmf_protocol)
{{ $account->dtmf_protocol}}
@endif
@if ($account->dtmf_protocol)
@if ($account->actions->isEmpty())
| {{ __('Empty') }} |
@endif
@foreach ($account->actions as $action)
| {{ $action->key }} |
{{ $action->code }} |
|
@endforeach
@else
To manage actions, you must configure the DTMF protocol in the account settings.
@endif
{{ __('Add') }}
{{ __('Types') }}
@if ($account->types->isEmpty())
| {{ __('Empty') }} |
@endif
@foreach ($account->types as $type)
| {{ $type->key }} |
|
@endforeach
@endif
@endsection