@extends('layouts.main')
@section('breadcrumb')
Accounts
{{ $account->identifier }}
Statistics
@endsection
@section('content')
people {{ $account->identifier }}
@include('parts.tabs', [
'items' => [
route('admin.account.edit', $account->id) => 'Information',
route('admin.account.device.index', $account->id) => 'Devices',
route('admin.account.statistics.show', $account->id) => 'Statistics',
],
])
message Messages from the account
{!! $messagesFromGraph !!}
message Messages to the account
{!! $messagesToGraph !!}
call Calls from the account
{!! $callsFromGraph !!}
call Calls to the account
{!! $callsToGraph !!}
@endsection