@php
$application_closed = \Illuminate\Support\Carbon::createFromFormat('Y-m-d', get_field('apply_before_date'))->isPast();
@endphp
@if($application_closed)
Applications closed
@endif
@include('components.share-button', [
'button_text' => 'Share on Linkedin',
'platform' => 'linkedin',
'text' => get_the_title(),
'url' => get_permalink()
])
@include('components.share-button', [
'button_text' => 'Share on Twitter',
'platform' => 'twitter',
'text' => get_the_title(),
'url' => get_permalink()
])
@endsection