@extends('web.layouts.app') @push('header-css') @endpush @section('content')
@forelse ($careers as $career)
{{ $career->title }}

{{ $career->location }}

{{ $career->salary_per_month }} {{ $career->salary_currency }}

Per monthly
    @foreach($career->bullets as $bullet)
  • {{ $bullet['bullet'] ?? '' }}
  • @endforeach
@empty No careers found... @endforelse
@endsection @push('footer-js') @endpush