I want to make an instant redirection in my controller in Laravel.
I know I can use
public function show($page) { return Redirect::url(\'http://ex
You have to return the results of the method in the base controller.
return $this->checkPages($page, $totalPages, 'http://example.com');