@extends('layout.dashboard') @section('content')
{{ trans('dashboard.dashboard') }}
@if(!$componentGroups->isEmpty() || !$ungroupedComponents->isEmpty()) @include('dashboard.partials.components') @else @endif
{{ trans('dashboard.widgets.support') }} {!! trans('dashboard.widgets.support_subtitle') !!}
@if($entries)
{{ trans('dashboard.widgets.news') }} {{ trans('dashboard.widgets.news_subtitle') }}
@foreach($entries as $entry) {{ $entry->title }}, {{ $entry->pubDate }} @endforeach
@endif
@includeWhen($welcomeUser, 'dashboard.partials.welcome-modal')
@stop