Files
Epicnabbo-Catalogus-Updated…/cms update/resources/themes/dusk/views/community/staff.blade.php
T
Remco b67e0ec2b9 🆙 Add fixed cms 🆙
2026-02-02 19:30:21 +01:00

77 lines
3.4 KiB
PHP

<x-app-layout>
@push('title', __('Staff'))
<div class="col-span-12 lg:col-span-9 lg:w-[96%]">
<div class="flex flex-col gap-y-4">
@foreach ($employees as $employee)
<x-content.staff-content-section :badge="$employee->badge" :color="$employee->staff_color">
<x-slot:title>
{{ $employee->rank_name }}
</x-slot:title>
<x-slot:under-title>
{{ $employee->job_description }}
</x-slot:under-title>
<div class="grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3">
@foreach ($employee->users as $staff)
<x-community.staff-card :user="$staff" />
@endforeach
</div>
@if (count($employee->users) === 0)
<div class="text-center text-gray-400">
{{ __('We currently have no staff in this position') }}
</div>
@endif
</x-content.staff-content-section>
@endforeach
</div>
</div>
<div class="col-span-12 lg:col-span-3 lg:w-[110%] space-y-4 lg:-ml-[32px]">
<x-content.content-card icon="chat-icon" classes="border border-gray-900">
<x-slot:title>
{{ __(':hotel staff', ['hotel' => setting('hotel_name')]) }}
</x-slot:title>
<x-slot:under-title>
{{ __('About the :hotel staff', ['hotel' => setting('hotel_name')]) }}
</x-slot:under-title>
<div class="px-2 text-sm space-y-4 text-gray-200">
<p>
{{ __('The :hotel staff team is one big happy family, each staff member has a different role and duties to fulfill.', ['hotel' => setting('hotel_name')]) }}
</p>
<p>
{{ __('Most of our team usually consists of players that have been around :hotel for quite a while, but this does not mean we only recruit old & known players, we recruit those who shine out to us!', ['hotel' => setting('hotel_name')]) }}
</p>
</div>
</x-content.content-card>
<x-content.content-card icon="chat-icon" classes="borderborder-gray-900">
<x-slot:title>
{{ __('Apply for staff') }}
</x-slot:title>
<x-slot:under-title>
{{ __('How to join the staff team', ['hotel' => setting('hotel_name')]) }}
</x-slot:under-title>
<div class="px-2 text-sm space-y-4 text-gray-200">
<p>
{{ __('Every now and then staff applications may open up. Once they do we always make sure to post a news article explaining the process - So make sure you keep an eye out for those in you are interested in joining the :hotel staff team.', ['hotel' => setting('hotel_name')]) }}
</p>
<p>
{!! __(
'You can occasionally also look at the :startTag Staff application page :endTag which will show you all of our current open positions.',
['startTag' => '<a href="/community/staff-applications" class="underline">', 'endTag' => '</a>'],
) !!}
</p>
</div>
</x-content.content-card>
</div>
</x-app-layout>