Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class PageController extends BaseController
- {
- public function getHome()
- {
- return $this->response(
- View::make('page.home', ['test' => 'any'])
- );
- }
- public function getClients()
- {
- return $this->response(
- View::make('page.home', ['test' => 'any'])
- );
- }
- public function getError404()
- {
- return $this->response(
- View::make('page.error404')
- );
- }
- public function missingMethod($args = [])
- {
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement