@extends('layouts.dashboard') @section('title', 'Home') @section('content') @section('myJS') @endsection
{{-- Set top level left hand column here --}}
@include('dashboard.dashboard_views.welcome') @php $data['latestUpdates'] = $latestUpdates; @endphp @include('dashboard.dashboard_views.latestUpdates', $data) {{-- Set top level right hand column here --}} @php $data['organisationName'] = $organisationName; $data['productsCount'] = $productsCount; $data['usersCount'] = $usersCount; $data['catalogsCount'] = $catalogsCount; $data['catalogName'] = $catalogName; $data['collectionsCount'] = $collectionsCount; $data['productsnotincollectionsCount'] = $productsnotincollectionsCount; $data['emptycollectionsCount'] = $emptycollectionsCount; @endphp @include('dashboard.dashboard_views.keyStats', $data)

@php $data['reportcats'] = $reportcats; $data['reports'] = $reports; @endphp @include('dashboard.dashboard_views.reports', $data) @php $data['exportList'] = $exportList; @endphp @include('dashboard.dashboard_views.recentExports', $data)

@php $data['userList'] = $userList; @endphp @include('dashboard.dashboard_views.userStats', $data)
@endsection