null button(string $title, string $route)
Creates the an action button for your section. Usually used when you want a user to add an item.

| This function requires setting the section name beforehand by using the section() function. | 
$name
Title for your button.
$route
URL route to the page.
| <?php
route('/foo', function() {
   // Must set the section first
   section('Foo', '/foo');
   // Create an action menu
   button('Create', '/foo/bar');
   return view('index.html');
}); |