@extends('layouts.main.app') @section('head') @include('layouts.main.headersection',['title'=> __('Apps')]) @endsection @section('content')
{{ $totalApps }}

{{ __('Total Apps') }}

{{ $totalActiveApps }}

{{ __('Active Apps') }}

{{ $totalInactiveApps }}

{{ __('Inactive Apps') }}

{{ __('Apps') }}

@if(count($apps) != 0) @foreach($apps ?? [] as $app) @endforeach @endif
{{ __('App Name') }} {{ __('User') }} {{ __('Website') }} {{ __('Transactions') }} {{ __('Status') }} {{ __('Created At') }} {{ __('Action') }}
{{ $app->title }} {{ Str::limit($app->user->name ?? '',15) }} {{ $app->website }} {{ number_format($app->live_messages_count) }} {{ $app->status == 1 ? 'Active' : 'Inactive' }} {{ \Carbon\Carbon::parse($app->created_at)->format('d-F-Y') }}
@if(count($apps) == 0)
{{ __('!Opps no records found') }}
@endif
@endsection