@extends('frontend.layouts.app') @section('title', 'Career') @php use Carbon\Carbon; use App\Helpers\Helper; use App\Enum\TimingTypeEnum; use Anuzpandey\LaravelNepaliDate\LaravelNepaliDate; @endphp @section('content') {{-- Hero Section --}} @include('frontend.partials.hero', [ 'mainHeading' => __('pages.career'), 'subHeading' => __('pages.career_description'), 'breadcrumb1' => [ 'name' => __('route.home'), 'route' => route('home'), ], 'breadcrumb2' => [ 'name' => __('route.career'), 'route' => route('career'), 'class' => 'text-gray-400', ], 'breadcrumb3' => null, 'breadcrumb4' => null, ])
@if (isset($careers) && count($careers) > 0) @foreach ($careers as $career)

{{ app()->getLocale() == 'en' ? $career->name_en ?? '' : $career->name_np ?? ($career->name_en ?? '') }}

{!! Helper::stripInlineStyle( app()->getLocale() == 'en' ? $career->requirement_en ?? '' : $career->requirement_np ?? ($career->requirement_en ?? ''), ) !!}
📅 {{ app()->getLocale() == 'en' ? $career->valid_date : LaravelNepaliDate::from($career->valid_date)->toNepaliDate(format: 'j F Y', locale: 'np') }} {{ app()->getLocale() == 'en' ? TimingTypeEnum::map($career->timing) ?? '' : TimingTypeEnum::mapNp($career->timing) ?? (TimingTypeEnum::map($career->timing) ?? '') }} 📬 {{ app()->getLocale() == 'en' ? $career->number_of_post ?? '' : Helper::convertEnglishToNepaliNumbers($career->number_of_post) ?? ($career->number_of_post ?? '') }} {{ __('pages.career_details') }}
@endforeach @else

No Open Positions at the Moment

Thank you for your interest in joining our institution. Currently, there are no active job openings. However, we are always interested in connecting with passionate professionals committed to excellence in education and development.

@if (!empty($setting->career_notify_email))

You may send your CV to

{{ $setting->career_notify_email }} @endif
@endif
@endsection