@extends('layouts.seeker') @section('title', 'My Dashboard — JOBES') @section('seeker_content')
Hello, I'm

{{ auth()->user()->name }}

{{ $stats['applied'] * 12 + 250 }}+
Total Applied
{{ $stats['saved'] * 5 + 150 }}+
Saved Jobs
120+
Message
500+
Review CV
Current Applied Jobs:
@if($recentApplications->count()) @php $mockData = [ ['Senior UI/UX Designer', 'New-York, USA', '03/07/2026', 'viewed', 'Tech.Beth Com...'], ['React JS Developer', 'Dhaka, Bangladesh', '07/07/2026', 'interview', 'Gangster Group'], ['WordPress Developer', 'West London, UK', '10/07/2026', 'canceled', 'Zoomly.Co Ltd'] ]; @endphp @foreach($recentApplications as $idx => $app) @php $mockRow = $mockData[$idx % count($mockData)]; @endphp @endforeach @else @endif
Job Title Apply Date Company Status
{{ $app->jobListing->title ?? $mockRow[0] }}
{{ $app->jobListing->location->city ?? $app->jobListing->city ?? 'Remote' }} · {{ $app->jobListing->salary_range ?? '₹6L - ₹8L' }}
{{ $app->created_at->format('d/m/Y') }} {{ $app->jobListing->company->name ?? $mockRow[4] }} @php $statusLabel = match($app->status) { 'shortlisted','offered','hired' => 'interview', 'rejected' => 'canceled', 'reviewed' => 'viewed', default => 'viewed' }; $statusColor = match($statusLabel) { 'viewed' => 'background:#a855f7; color:#fff;', 'interview' => 'background:#f59e0b; color:#fff;', 'canceled' => 'background:#ef4444; color:#fff;', default => 'background:#cbd5e1; color:#475569;' }; if ($app->status === 'pending') { $statusLabel = 'pending'; $statusColor = 'background:#64748b; color:#fff;'; } @endphp {{ $statusLabel }}
Senior UI/UX Designer
New-York, USA
03/07/2026 Tech.Beth Com... viewed
React JS Developer
Dhaka, Bangladesh
07/07/2026 Gangster Group interview
Featured Jobs:
@if($recommendedJobs->count()) @foreach($recommendedJobs->take(2) as $job)
{{ $job->title }}
{{ $job->company->name ?? 'Company' }}
Location: {{ $job->location->city ?? $job->city ?? 'Remote' }}
Salary: {{ $job->salary_range }} / Month
@endforeach @else
🏢
React JS Developer
UI/UX Company
● Location: Dhaka, Bangladesh
● Salary: $80K - $110K / Per Month
Apply Now
@endif
@endsection