@extends('layouts/layoutMaster') @section('title', 'Dashboard') @section('vendor-style') @vite([ 'resources/assets/vendor/libs/datatables-bs5/datatables.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-responsive-bs5/responsive.bootstrap5.scss', 'resources/assets/vendor/libs/apex-charts/apex-charts.scss', 'resources/assets/vendor/libs/swiper/swiper.scss' ]) @endsection @section('page-style') @vite([ 'resources/assets/vendor/scss/pages/cards-statistics.scss', 'resources/assets/vendor/scss/pages/cards-analytics.scss' ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/datatables-bs5/datatables-bootstrap5.js', 'resources/assets/vendor/libs/apex-charts/apexcharts.js', 'resources/assets/vendor/libs/swiper/swiper.js' ]) @endsection @section('page-script') @vite('resources/assets/js/dashboards-crm.js') @endsection @section('content') @php $helper = new \App\Helpers\Helpers(); $common_date_format = $helper->general_setting_data()->date_format ?? 'd-M-y'; $user_id = auth()->user()->user_id ; $auth_id = auth()->user()->id ; $userData =$helper->get_staff_data($user_id); $lastLogin =$helper->get_user_last_login($auth_id); $welcome_status = $userData->welcome_status ?? '1'; @endphp @if($welcome_status == 0)

๐ŸŽ‰
Welcome Aboard! ๐Ÿš€

We're excited to have you on the team!
Your journey begins nowโ€”let's explore and achieve amazing things together. ๐ŸŒŸ

Remember: "Success is the sum of small efforts, repeated day in and day out." โ€” Robert Collier

@endif @endsection