@extends('layouts.dashboard') @section('template_title') Welcome {{ Auth::user()->name }} @endsection @section('header') {{ trans('auth.loggedIn', ['name' => Auth::user()->name]) }} @endsection @section('breadcrumbs')
  • {{ trans('titles.app') }} chevron_right
  • {{ trans('titles.dashboard') }}
  • @endsection @section('content')
    @include('panels.welcome-panel')
    @include('cards.weather-card')
    @include('cards.check-list-card')
    {{--
    @include('modules.table')
    @include('modules.mega-footer')
    @include('modules.mini-footer')
    --}}
    @endsection @section('footer_scripts') @endsection