@extends('frontend.layouts.app') @section('title', __('dashboard')) @section('main')
{{ __('hello') }}, {{ ucfirst(auth()->user()->name) }}

{{ __('here_is_your_daily_activities_career_opportunities') }}

{{ $openJobCount }}

{{ __('open_job') }}

{{ $savedCandidates }}

{{ __('saved_candidate') }}

{{ $pendingJobCount }}

{{ __('pending_jobs') }}

Pricing Plan - Feature Remaining
{{ $userplan->job_limit }}

{{ __('active_jobs') }}

{{ $userplan->highlight_job_limit }}

{{ __('highlight_jobs') }}

{{ $userplan->featured_job_limit }}

{{ __('featured_jobs') }}

{{ $userplan->candidate_cv_view_limitation == 'limited' ? $userplan->candidate_cv_view_limit : __('unlimited') }}

{{ __('profile_view') }}

{{ __('recent_jobs') }}

{{ __('view_all') }}
@if ($recentJobs->count() > 0) @foreach ($recentJobs as $job) @endforeach @else @endif
{{ __('job') }} {{ __('status') }} {{ __('applications') }} {{ __('action') }}
@if ($job->status == 'active')
{{ __('active') }}
@elseif ($job->status == 'pending')
{{ __('pending') }}
@else
{{ __('job_expire') }}
@endif
{{ $job->applied_jobs_count }} {{ __('applications') }}

{{ __('no_data_found') }}

@endsection