Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

webfuelcode's avatar

Call to a member function isPast() on null

Error Call to a member function isPast() on null

If else statement on post date if it is expired.

@if($post->expires->isPat()).....................@endif

0 likes
2 replies
Sinnbeck's avatar
Sinnbeck
Best Answer
Level 102

Make sure that is has a value before checking stuff on it :)

@if($post->expires && $post->expires->isPast())
1 like

Please or to participate in this conversation.