@php $sales_prev_week = cache('sales_previous_week'); $sales_this_week = cache('sales_this_week'); $api_cost_distribution = cache('api_cost_distribution'); $popular_plans_data = cache('popular_plans_data'); $popular_tools_data = cache('popular_tools_data'); $currencySymbol = currency()->symbol; $premium_features = [ 'VIP Support' => 'Get instant help whenever you need it.', 'Access to All Current & Future Extensions worth $900+' => 'Always stay ahead with the latest features.' , 'Access to All Current & Future Themes worth $390'=> 'Always stay ahead with the latest designs.' , '10 Hours of Custom Development Every Month' => 'Tailored improvements, at no extra cost.' , 'Direct Communication with Our Development Team' => 'No middlemen, just solutions.' , 'Exclusive Extensions Not Available to Others' => 'Stay ahead of competition, reserved for VIPs only.' , 'Complimentary Logo Design' => 'A custom logo to elevate your brand.' , 'Personalized Onboarding Assistance' => 'We’ll help you get up and running smoothly.' , 'Free Setup & Configuration Services' => 'Let us handle the technical details for you.' , 'Get the Mobile App Free in Your 4th Month!' => 'Enjoy a free mobile app after your third month of subscription.' , ]; @endphp @extends('panel.layout.app', ['disable_tblr' => true, 'disable_titlebar' => true]) @section('title', __('Overview')) @section('content')
@if ($gatewayError == true)

{{ __('Gateway is set to use sandbox. Please set mode to development!') }}

@endif {{-- beging: brand-header-caption --}}

Hey {{ auth()?->user()?->name }} 👋

{{ __('Customize') }}
    @foreach (cache('dashboard_widgets', []) as $widget)
  1. {{ $widget->name->label() }}
  2. @endforeach
{{-- end: brandh-header-caption --}}
{{-- begin: brand --}}

@lang('Marketplace is here.')

@lang('Extend the capabilities of MagicAI, explore new designs and unlock new horizons.')

{{ __('Explore Marketplace') }}
{{-- end: brand --}} {{-- begin: group-widgets --}}
@php $widgets = cache('dashboard_widgets', []); @endphp @foreach ($widgets as $widget) @if ($widget->enabled) @includeIf('panel.admin.dashboard.' . $widget?->name?->value, ['widget' => $widget]) @endif @endforeach
{{-- end: group-widgets --}}
@endsection @push('script') @endpush