for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MeestorHok\Blue\Http\Controllers;
use MeestorHok\Blue\Http\Controllers\Controller;
use Request;
use SEO;
class PagesController extends Controller
{
public function page ($page = null) {
if (is_null($page)) {
return SEO::make([], 'Blue::home');
}
return '<h1>'.$page.'</h1>';