Created
May 15, 2014 20:34
-
-
Save ameliaikeda/93a6103737dbb0da63dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Theme extends Eloquent { | |
| protected $default = 1; | |
| public static function theme($id) { | |
| $theme = static::find($id); | |
| if (! $theme) | |
| return static::find($this->default); | |
| return $theme; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment