@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; // TODO: get the list from db $premium_features = [ 'VIP Priority Support', 'All Current and Upcoming Extensions and Themes', '5 Hours of Free Development Each Month', 'Direct Access to Our Development Team', ]; @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