Skip to content

Instantly share code, notes, and snippets.

@morrislaptop
Last active October 5, 2021 22:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save morrislaptop/42346216229c52d8324d926effe766c8 to your computer and use it in GitHub Desktop.
Save morrislaptop/42346216229c52d8324d926effe766c8 to your computer and use it in GitHub Desktop.
<?php
public function getCurrentStatusAttribute()
{
if ($this->status === 'published') {
return $this->publish_date?->lessThan(now()) ? 'published' : 'future';
}
return $status;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment