Skip to content

Instantly share code, notes, and snippets.

@Mombuyish
Created May 2, 2017 06:22
Show Gist options
  • Save Mombuyish/15c2bb076130e02870e73cbf1f5d49d7 to your computer and use it in GitHub Desktop.
Save Mombuyish/15c2bb076130e02870e73cbf1f5d49d7 to your computer and use it in GitHub Desktop.
<?php
public function getStatusAttribute($value)
{
switch ($value) {
case 1:
return 'published';
case 2:
return 'top';
default:
return 'hidden';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment