Advertisement
Serafim

Untitled

Dec 2nd, 2014
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. <?php
  2. class PageController extends BaseController
  3. {
  4.     public function getHome()
  5.     {
  6.         return $this->response(
  7.             View::make('page.home', ['test' => 'any'])
  8.         );
  9.     }
  10.  
  11.     public function getClients()
  12.     {
  13.         return $this->response(
  14.             View::make('page.home', ['test' => 'any'])
  15.         );
  16.     }
  17.  
  18.     public function getError404()
  19.     {
  20.         return $this->response(
  21.             View::make('page.error404')
  22.         );
  23.     }
  24.  
  25.     public function missingMethod($args = [])
  26.     {
  27.  
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement