App\Modules\Demos\Controllers\Demos::catchAll PHP Method

catchAll() public method

public catchAll ( $slug )
    public function catchAll($slug)
    {
        $content = '<pre>' . htmlspecialchars($slug) . '</pre>';
        return View::make('Default')->shares('title', __d('demos', 'The catch-all Route'))->with('content', $content);
    }