Skip to content

Instantly share code, notes, and snippets.

Created July 8, 2015 09:46
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 anonymous/089010f80faf699e5482 to your computer and use it in GitHub Desktop.
Save anonymous/089010f80faf699e5482 to your computer and use it in GitHub Desktop.
$today = date('Y-m-d');
$month = date('Y-m-d', strtotime($today .' +1 month'));
$Employees = Employee::get()
->filter('Birthdate:SmallerThan', $month)
->sort('Created DESC')
->limit(10);
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