@php Theme::set('pageTitle', __('Careers')); Theme::layout('page-detail'); Theme::set('headerStyle', theme_option('header_style', 'style-2')); @endphp @if (is_plugin_active('career') && $careers->isNotEmpty())
@forelse($careers as $career)
{!! Theme::partial('careers.item', compact('career')) !!}
@empty

{{ __('No data to display') }}

@endforelse
@if ($careers instanceof \Illuminate\Contracts\Pagination\LengthAwarePaginator)
{!! $careers->withQueryString()->links(Theme::getThemeNamespace('partials.pagination')) !!}
@endif
@endif