@php use Illuminate\Support\Carbon; $isTimerShow = $eventTicketsSettings['tickets_timer_is_show'] ?? false; $isTimerFixed = ! empty($eventTicketsSettings['tickets_timer_position']) && $eventTicketsSettings['tickets_timer_position'] == 'fixed'; $countDownDate = $isTimerShow && $eventTicketsTimer ? Carbon::parse($eventTicketsTimer)->format('Y-m-d H:i:s') : null; @endphp @extends('website.layouts.app') @section('meta_title', "Techne | Tickets") @section('meta_description', "Techne Summit Tickets Page") @section('meta_keywords', 'Techne, Tickets, Event') @section('content') @if (isset($tickets) && count($tickets))
{{--

{{ \Carbon\Carbon::parse($event->start_date)->year }} {{ __('app.Tickets') }}

--}} @if ($isTimerShow && $eventTicketsTimer)

{{ \Carbon\Carbon::parse($event->start_date)->year }} {{ __('app.Tickets') }}

{{ __('labels.Prices increase') }}:
@endif
@foreach ($tickets as $key => $ticket)
@include('website.components.responsive-ticket-card', ['ticket' => $ticket])
@endforeach
@endif @include('website.sections.subscribe-form') @endsection @pushIf($isTimerShow && $countDownDate, 'scripts') @endPushIf