@extends('layouts.public') @section('title', ($demand->job_title ?: 'Job Opportunity') . ' - M-Ajira') @section('content')
Back to Jobs
🎯
{{ ucfirst($demand->status) }} 🌍 International @if($demand->payment_type) @switch($demand->payment_type) @case('fixed') 💰 Fixed @break @case('range') 📊 Range @break @case('per_trip') 🚗 Per Trip @break @case('hourly') ⏰ Hourly @break @case('commission') 💵 Commission @break @case('negotiable') 🤝 Negotiable @break @default {{ ucfirst($demand->payment_type) }} @endswitch @endif

{{ $demand->job_title ?: 'Job Opportunity' }}

🌍 {{ $demand->country }} Ref: {{ $demand->demand_sn }}
@switch($demand->payment_type) @case('fixed')
Foreign Currency
{{ $demand->salary_currency }} {{ number_format($demand->salary_foreign_amount) }}
per month
Kenyan Shillings
KES {{ number_format($demand->salary_foreign_amount * $demand->exchange_rate) }}
@ rate: {{ $demand->exchange_rate }}
@break @case('range')
Salary Range
{{ $demand->salary_currency }} {{ number_format($demand->salary_min) }} - {{ number_format($demand->salary_max) }}
per month
In Kenyan Shillings
KES {{ number_format($demand->salary_min * $demand->exchange_rate) }} - {{ number_format($demand->salary_max * $demand->exchange_rate) }}
per month
@break @case('per_trip')
Per Trip Rate
{{ $demand->salary_currency }} {{ number_format($demand->per_trip_rate, 2) }}
per trip/task
Estimated Monthly
{{ $demand->salary_currency }} {{ number_format($demand->per_trip_rate * ($demand->estimated_trips_per_month ?? 100)) }}
~{{ $demand->estimated_trips_per_month ?? 100 }} trips/month
@break @case('hourly')
Hourly Rate
{{ $demand->salary_currency }} {{ number_format($demand->hourly_rate, 2) }}
per hour
Estimated Monthly
{{ $demand->salary_currency }} {{ number_format($demand->hourly_rate * ($demand->estimated_hours_per_month ?? 160)) }}
~{{ $demand->estimated_hours_per_month ?? 160 }} hours/month
@break @case('commission')
Commission-Based
{{ $demand->commission_percentage }}% Commission
@if($demand->base_salary)
+ {{ $demand->salary_currency }} {{ number_format($demand->base_salary) }} Base Salary
@endif @if($demand->commission_details)

{{ $demand->commission_details }}

@endif
@break @case('negotiable')
🤝 Salary Negotiable

Compensation will be discussed during the interview process

@if($demand->negotiable_details)

{{ $demand->negotiable_details }}

@endif
@break @default
Salary
Contact for details
@endswitch @if($demand->additional_benefits)

Additional Benefits

{{ $demand->additional_benefits }}

@endif
{{ $demand->positions_available }}

Positions Available

{{ $demand->positions_filled }}

Already Filled

@if($demand->remaining_positions > 0)
{{ $demand->remaining_positions }}

Still Available

@endif @if($demand->experience_years)
{{ $demand->experience_years }}

Years Experience

@endif @if($demand->deadline)
{{ \Carbon\Carbon::parse($demand->deadline)->format('d M Y') }}

Application Deadline

@endif
@if($demand->job_description)
📄

Job Description

{{ $demand->job_description }}

@endif

Requirements

@if($demand->preferred_gender && $demand->preferred_gender !== 'Any')
👤

Gender

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

@endif @if($demand->preferred_age)
🎂

Age Range

{{ $demand->preferred_age }}

@endif @if($demand->preferred_religion)
🕌

Religion

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

@endif @if($demand->preferred_marital_status)
💍

Marital Status

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

@endif @if($demand->preferred_number_of_children !== null)
👶

Children

Max {{ $demand->preferred_number_of_children }}

@endif @if($demand->education_level)
🎓

Education Level

{{ $demand->education_level }}

@endif @if($demand->trade_certificate)
📜

Certificate Required

{{ $demand->trade_certificate }}

@endif @if($demand->preferred_issuing_institution)
🏫

Institution

{{ $demand->preferred_issuing_institution }}

@endif
@if($demand->preferred_counties && is_array($demand->preferred_counties))
📍

Preferred Counties

@foreach($demand->preferred_counties as $county) {{ $county }} @endforeach
@endif

What We Offer

Competitive Compensation

As described above

Accommodation

Provided by employer

Food & Utilities

All inclusive

Medical Insurance

Full coverage

🎯

Interested?

Register to apply for this position

Register Now →

Already registered?
Login here

Share this job

💬

Have Questions?

Our team is here to help

Contact Us →
🔍

Looking for More Opportunities?

Browse all available positions and find your perfect match

Browse All Jobs →
@endsection