{{-- resources/views/pages/dashboard/index.blade.php --}} @extends('layouts.app') @push('pageTitle') {{ __('labels.dashboard') }} @endpush @section('content')
{{-- Flash Messages --}} @include('components.common.flush-message') {{-- Welcome --}}

{{ __('labels.welcome_back') }}

@include('pages.dashboard.templates.stats.index', [ 'dashboardStats' => $dashboardStats ?? null, ])
{{--
@include('pages.dashboard.templates.community', [ 'posts' => $latestData['posts'] ?? null, 'documents' => $latestData['documents'] ?? null, ])
--}}
@include('pages.dashboard.templates.latest-content', [ 'checklists' => $latestData['checklists'] ?? null, 'discussions' => $latestData['discussion_threads'] ?? null, ])
{{-- checklists --}}
{{-- @include('pages.dashboard.templates.events', [ 'events' => $latestData['events'] ?? null, ]) --}} @include('pages.dashboard.templates.safety-information', [ 'safetyInformation' => $latestData['safety_information'] ?? null, ]) @include('pages.dashboard.templates.company-recommendations', [ 'companyRecommendations' => $latestData['company_recommendations'] ?? null, ]) @include('pages.dashboard.templates.news', [ 'news' => $latestData['news'] ?? null, ])
@endsection