@if ($this->raffleEnded)

The raffle has ended!

@else
@php $this->hours = floor($this->timeRemaining / 3600); $this->minutes = floor(($this->timeRemaining % 3600) / 60); $this->seconds = $this->timeRemaining % 60; @endphp

Time Remaining:

{{ str_pad($this->hours, 2, '0', STR_PAD_LEFT) }} : {{ str_pad($this->minutes, 2, '0', STR_PAD_LEFT) }} : {{ str_pad($this->seconds, 2, '0', STR_PAD_LEFT) }}

@endif