@extends('layout.dashboard') @section('content')
{{ trans('dashboard.dashboard') }}

{{ trans('dashboard.components.component_statuses') }}

@if(!$component_groups->isEmpty() || !$ungrouped_components->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
@if(Session::get('setup.done')) @include('dashboard.partials.welcome-modal') @endif @stop