@if($event->type == "online" and !empty($event->start_date) and checkTimestampInToday($event->start_date))
{{ trans('update.todays_live_session') }}!
{{ trans('update.your_event_starts_today') }}
@elseif(!is_null($event->capacity))
@php
$percent = $event->getCapacityPercent();
@endphp
@if($percent < 100)
{{ round($percent,1) }}%
{{ trans('update.capacity_reached') }}
@else
{{ trans('update.capacity_reached') }}!
{{ trans('update.all_seats_were_been_sold') }}
@endif
@endif