@extends('web.layouts.app') @push('header-css') @endpush @section('content')

For general application, send your resume at career@gujurly.com

@forelse ($internships as $internship)
{{ $internship->title }}

{{ $internship->location }}

{{ $internship->salary_per_month }} {{ $internship->salary_currency }}

Per monthly
    @foreach($internship->bullets as $bullet)
  • {{ $bullet['bullet'] ?? '' }}
  • @endforeach
@empty No internships found... @endforelse
{{-- Application Modal --}} @include('web.components.application_modal', ['jobId' => null, 'jobType' => 'internship']) {{-- jobId will be set by JS from button data attributes --}} @endsection @push('footer-js') @endpush