@extends('frontend::layouts.master') @push('styles') @endpush @section('content') @php $sp_word = explode(' ', $link_career['name']); $last_word = end($sp_word); $title = str_replace($last_word, '', $link_career['name']); if (empty($title)) { $title = $link_career['name']; $last_word = ''; } @endphp @include('frontend::components.page-hero', [ 'title' => $title, 'titleHighlight' => $last_word, 'subtitle' => $link_career['desc'] ?? '', 'image' => !empty($link_career['image']) ? asset($link_career['image']) : '', 'imageAlt' => $link_career['name'] ?? '', 'imagePosition' => 'object-center', ]) {{-- Benefits Section --}} @if (!empty($careers['detail']))
@include('frontend::components.tsic-ellipse-decoration')
{!! $careers['detail'] !!} {{-- Save Class: Why Work at TSIC? Content for input into a text editor --}} {{-- --}}
@endif {{-- CTA Section --}} @include('frontend::components.cta-section') @endsection @push('scripts') {{ module_vite('build-frontend', 'resources/assets/js/career.js') }} @endpush