Skip to content

Instantly share code, notes, and snippets.

@rubytastic
Created July 10, 2015 12:44
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 rubytastic/adfad4be4223c09b952a to your computer and use it in GitHub Desktop.
Save rubytastic/adfad4be4223c09b952a to your computer and use it in GitHub Desktop.
{
$today = date('Y-m-d');
$Employees = Employee::get()
->filter('Birthdate:GreaterThanOrEqual', $today)
->sort('Birthday DESC')
->limit(30);
return $this->renderWith('BirthdaysWidget', array(
'Employees' => $Employees
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment