mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-04-17 19:58:27 +00:00
17 lines
No EOL
442 B
PHP
17 lines
No EOL
442 B
PHP
@extends('layouts.main')
|
|
|
|
@section('content')
|
|
<header>
|
|
<h1><i class="ph ph-phone"></i> {{ __('Telephony') }}</h1>
|
|
</header>
|
|
|
|
<div class="grid">
|
|
<div class="card">
|
|
@include('account.voicemails.index', ['account' => $account, 'admin' => false])
|
|
</div>
|
|
|
|
<div class="card">
|
|
@include('account.call_forwardings.edit', ['account' => $account])
|
|
</div>
|
|
</div>
|
|
@endsection |