@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.superadmindashboard') }} @parent @stop {{-- Page content --}} @section('content') @if ($snipeSettings->dashboard_message != '')
{!! Helper::parseEscapedMarkedown($snipeSettings->dashboard_message) !!}
@endif
Recent Registered Companies
@forelse ($data['recent_registered'] as $recent) @php $tSetting = $recent->run(function ($tenant) { return \App\Models\Setting::first(); }); @endphp @empty @endforelse
# Name Package Date
{{ $loop->index + 1 }} {{ $recent->company_name }} {{ $recent->subscription?$recent->subscription->name:'Trial' }} {{ $recent->created_at->format('d M Y h:iA') }}
No data found
Companies with Most Users
@forelse ($data['companies_with_most_users'] as $recent) @php $tSetting = $recent->run(function ($tenant) { return \App\Models\Setting::first(); }); @endphp @empty @endforelse
# Name Package Date
{{ $loop->index + 1 }} {{ $recent->company_name }} {{ $recent->subscription?$recent->subscription->name:'Trial' }} {{ $recent->created_at->format('d M Y h:iA') }}
No data found
Recent Paid Subcriptions
@forelse ($data['recent_paid_subscriptions'] as $recent) @php $tSetting = $recent->run(function ($tenant) { return \App\Models\Setting::first(); }); @endphp @empty @endforelse
# Name Package Date
{{ $loop->index + 1 }} {{ $recent->company_name }} {{ $recent->subscription?$recent->subscription->name:'Trial' }} {{ $recent->created_at->format('d M Y h:iA') }}
No data found
Recent Licesnse Expired Companies
@forelse ($data['recent_license_expired_companies'] as $recent) @php $tSetting = $recent->run(function ($tenant) { return \App\Models\Setting::first(); }); @endphp @empty @endforelse
# Name Package Date
{{ $loop->index + 1 }} {{ $recent->company_name }} {{ $recent->subscription?$recent->subscription->name:'Trial' }} {{ $recent->created_at->format('d M Y h:iA') }}
No data found
Package Comapny Count
@forelse ($data['package_company_count'] as $recent) @php $tSetting = $recent->run(function ($tenant) { return \App\Models\Setting::first(); }); @endphp @empty @endforelse
# Name Package Date
{{ $loop->index + 1 }} {{ $recent->company_name }} {{ $recent->subscription?$recent->subscription->name:'Trial' }} {{ $recent->created_at->format('d M Y h:iA') }}
No data found
Company Registrations
@stop @section('moar_scripts') @include ('partials.bootstrap-table', ['simple_view' => true, 'nopages' => true]) @stop @push('js') @endpush