My Jobs

Manage your posted job listings

Total Jobs

{{ $jobs->total() }}

Active Jobs

{{ $jobs->where('status', 'active')->count() }}

Total Applications

{{ $jobs->sum('applications_count') }}

Your Job Listings

@forelse($jobs as $job) @empty @endforelse
Job Title Applications Views Status Posted Actions
{{ substr($job->title, 0, 1) }}
{{ $job->title }}
{{ $job->location }}
{{ $job->applications_count ?? 0 }} @if(($job->applications_count ?? 0) > 0)
@endif
{{ number_format($job->views_count ?? 0) }} @if($job->status === 'active') Active @elseif($job->status === 'pending') Pending @elseif($job->status === 'expired') Expired @else {{ ucfirst($job->status) }} @endif {{ $job->created_at->diffForHumans() }}

No jobs posted yet

Start building your talent pipeline by posting your first job opening.

Post Your First Job
@if($jobs->hasPages())
{{ $jobs->links() }}
@endif