Description


null title(string $title)


Set a title for a page.

Parameters


$title

Title of the page.

Examples


route('/foo', function() {

   // Set a pages title
   title('Hello World');

   return view('index.html');
});