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