@extends(BaseHelper::getAdminMasterLayoutTemplate())
@push('header-action')
@if (count($widgets) > 0)
{{ trans('core/dashboard::dashboard.manage_widgets') }}
@endif
@endpush
@section('content')
@if (config('core.base.general.enable_system_updater') && Auth::user()->isSuperUser())
@{{ message }}, please go to System Updater to upgrade to the latest version!
@endif
{!! apply_filters(DASHBOARD_FILTER_ADMIN_NOTIFICATIONS, null) !!}
@foreach ($statWidgets as $widget)
{!! $widget !!}
@endforeach
{!! apply_filters(DASHBOARD_FILTER_TOP_BLOCKS, null) !!}
@foreach ($userWidgets as $widget)
{!! $widget !!}
@endforeach
@endsection
@push('footer')
@include('core/dashboard::partials.modals', compact('widgets'))
@endpush