Skip to content

Instantly share code, notes, and snippets.

@buiquangduc
Last active January 24, 2018 16:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save buiquangduc/21a1cb4dda037e8c9f5c291dc6b9d906 to your computer and use it in GitHub Desktop.
Save buiquangduc/21a1cb4dda037e8c9f5c291dc6b9d906 to your computer and use it in GitHub Desktop.
Public scope example
<?php
namespace App;
use Sober\Controller\Controller;
class FrontPage extends Controller
{
/**
* This function will be represented as $custom_title variablr inside front-page.blade.php file.
*
* @return string.
*/
public function custom_title() {
return 'Front Page custom title';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment