@extends('layouts.main.app') @section('head') @include('layouts.main.headersection',[ 'title' => __('Apps'), 'buttons'=>[ [ 'name'=>' '.__('Create App'), 'url'=>'#', 'components'=>'data-toggle="modal" data-target="#addRecord" id="add_record"', 'is_button'=>true ] ]]) @endsection @section('content')
{{ $limit }}

{{ __('Total App') }}

{{ number_format($total) }}

{{ __('Total Messages Sent') }}

{{ number_format($last30_messages ?? 0) }}

{{ __('Last 30 days Messages') }}

@if(count($apps ?? []) == 0)

{{ __('!Opps You Have Not Created Any APP') }}

@endif @foreach($apps as $app)
{{ $app->title }}
{{__('Messages Count:')}} ({{number_format($app->live_messages_count)}})
{{__('Device:')}} {{$app->device->phone ?? ''}}

{{ __('Integration') }}

@endforeach
{{ $apps->links('vendor.pagination.bootstrap-4') }}
@endsection