@if(hasAccessOf('projects')['is_read'] && in_array('total_project',$activeWidgets))
@lang('modules.dashboard.totalProject')
{{ $totalProject }}
@endif @if(hasAccessOf('time_logs')['is_read'] && in_array('total_hours_logged',$activeWidgets))
@lang('modules.dashboard.totalHoursLogged')
{{ $totalHoursLogged }}
@endif @if(hasAccessOf('projects')['is_read'] && in_array('total_overdue_project',$activeWidgets))
@lang('modules.dashboard.totalOverdueProject')
{{ $totalOverdueProject }}
@endif
@if(hasAccessOf('projects')['is_read'] && in_array('status_wise_project',$activeWidgets))
@lang('modules.dashboard.statusWiseProject')
@lang('app.download')
@if(!empty(json_decode($statusWiseProject)))
@else
@lang('messages.noProjectFound')
@endif
@endif @if(hasAccessOf('projects')['is_read'] && in_array('pending_milestone',$activeWidgets))
@lang('modules.dashboard.pendingMilestone')
@lang('app.milestone')
@lang('app.project')
@lang('app.amount')
@forelse($pendingMilestone as $milestone)
{{ ucwords($milestone->milestone_title) }}
{{ ucwords($milestone->project_name) }}
{{ $milestone->currency_symbol . $milestone->cost }}
@empty
@lang("messages.noRecordFound")
@endforelse
@endif