@extends('layouts.partner') @section('title', 'My Demands - M-Ajira Partner') @section('content')
Back to Dashboard

My Job Demands

Manage all your job postings

➕ Post New Demand
@if(session('success'))

Success!

{{ session('success') }}

@endif
@forelse($demands as $demand)
💼

{{ $demand->demand_sn }}

{{ $demand->job_title ?: 'Job Position' }} - {{ $demand->country }}

{{ ucfirst($demand->status) }}

POSITIONS

{{ $demand->positions_available }}

FILLED

{{ $demand->positions_filled }}

SALARY

{{ $demand->salary_currency }} {{ number_format($demand->salary_amount) }}

APPLICANTS

{{ $demand->candidates_count }}

View Details & Candidates →
@empty
📭

No Demands Posted Yet

Start by posting your first job demand to find suitable candidates

Post Your First Job →
@endforelse
@if($demands->hasPages())
{{ $demands->links() }}
@endif
@endsection