@extends('admin.adminlayouts.adminlayout') @section('head') {!! HTML::style("assets/global/plugins/fullcalendar/fullcalendar.min.css") !!} @stop @section('mainarea')

@if($loggedAdmin->type=='superadmin'){{ $loggedAdmin->company->company_name }} @endif {{ trans('core.dashboard') }}

@if ($loggedAdmin->company->license_expired == 1)
You have unpaid invoices past due date. Please pay them by going to Settings > Billing to restore access to your account.
@endif @if ($loggedAdmin->company->license_expired == 0) @if (($displaySetup == true and $nextStepNumber > 3) || $displaySetup == false) @if(!$loggedAdmin->checkEmailVerified())
{!! trans("messages.verifyEmail", ["link" => URL::to('admin/resend_verify_email')]) !!}
@endif @if($loggedAdmin->company->billing_address == "")
Please update your billing address and timezone by going to company settings.
@endif @endif @endif @if($loggedAdmin->company->license_expired == 0)
{{$employee_count}}
{{ trans('core.totalEmployees') }}
{{ trans('core.viewMore') }}
{{$department_count}}
{{ trans('core.totalDepartments') }}
{{ trans('core.viewMore') }}
@if($loggedAdmin->type=='superadmin' || $loggedAdmin->company->award_feature==1)
{{$awards_count}}
{{ trans('core.totalAwards') }}
{{ trans('core.viewMore') }}
@endif
@if ($displaySetup == true)
{{----}} @lang("core.welcomeTitle")

@lang("core.welcomeMessage")


@lang("core.step") {{ $nextStepNumber }}: {{ $nextStep }}

{{ round(($nextStepNumber - 1)/$totalSteps*100) }}% Complete
@lang("core.progress"): {{ round(($nextStepNumber - 1)/$totalSteps*100) }}% @lang("core.complete")
@endif
@if($loggedAdmin->type=='superadmin' || $loggedAdmin->company->attendance_feature==1)
{{ trans('core.attendance') }}
@endif @if($loggedAdmin->type=='superadmin' || $loggedAdmin->company->expense_feature==1)
{{$loggedAdmin->company->currency_symbol}} {{ trans('core.expenseReport') }}
@endif
{{ trans("core.".date('F')) }} {{ trans('core.birthdays') }}
    @forelse($current_month_birthdays as $birthday)
  • {!! HTML::image($birthday->profile_image_url,'ProfileImage',['class'=>"rounded-x",'width'=>'25px'])!!}
    {{$birthday->full_name}} {{ trans('core.hasBirthDayOn') }} {{date('d F ',strtotime($birthday->date_of_birth)) }}
  • @empty

    {{ trans('messages.noBirthdays') }}

    @endforelse
@if($loggedAdmin->type=='superadmin' || $loggedAdmin->company->award_feature==1)
{{ trans('core.awards') }}
    @forelse($awards as $award)
  • {!! HTML::image($award->employee->profile_image_url,'ProfileImage',['class'=>"rounded-x",'height'=>'25px'])!!}
    {{\Illuminate\Support\Str::words($award->employee->full_name,1,'') }} {{$award->award_name}}
    {{ucfirst($award->month) }} {{$award->year}}
  • @empty

    {{ trans("messages.noAwards") }}

    @endforelse
@endif
@endif @stop @section('footerjs') @if($loggedAdmin->company->license_expired == 0) {!! HTML::script("assets/global/plugins/moment.min.js")!!} {!! HTML::script("assets/global/plugins/fullcalendar/fullcalendar.min.js")!!} {!! HTML::script("assets/global/plugins/fullcalendar/lang-all.js")!!} {!! HTML::script("assets/global/plugins/highcharts/js/highcharts.js")!!} {!! HTML::script("assets/global/plugins/highcharts/js/modules/exporting.js")!!} @endif @stop