Advertisement
Guest User

Untitled

a guest
Jul 28th, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. Route::when('profile/*', 'christmas');
  2. Route::get('/profile', function(){
  3. return "This is my profile";
  4. }
  5. );
  6.  
  7. /: Filter
  8. Route::filter('christmas',function(){
  9. //if(date('d/m/y') == '12/12/84'){
  10. if(false){
  11. return View::make('christmas');
  12. }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement