@extends('layouts.app') @section('admin_title') {{__('Dashboard')}} @endsection @section('content')

{{__('Welcome back')}}, {{ auth()->user()->name}} 👏

@if (count($tasks)>0) @include('dashboard::tasks') @endif @foreach (config('global.modulesWithDashboardInfo') as $moduleWithDashboardInfo) @include($moduleWithDashboardInfo.'::dashboard') @endforeach
@yield('dashboard_content') @yield('dashboard_content2') @yield('dashboard_content3') @yield('dashboard_content4')
@endsection