@extends('web.layouts.app')
@section('title', $career->title)
@section('content')
{{ $career->title }}
{{ __('Location:') }} {{ $career->location }}
{{ __('Salary:') }} {{ $career->salary_per_month }} {{ $career->salary_currency }}
{{ __('Description') }}
{{ $career->title_description }}
@if ($career->bullets)
{{ __('Responsibilities and Qualifications') }}
@foreach ($career->bullets as $bullet)
- {{ $bullet['bullet'] }}
@endforeach
@endif
@include('web.components.application_modal', ['jobId' => $career->id, 'jobType' => 'career'])
@endsection