for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Example;
use App\Facades\View;
/**
* Test Controller
*
* @package App
* @author Rougin Royce Gutib <[email protected]>
*/
class TestController
{
* Greets you with a "lorem ipsum" text.
* @return string
public function greet()
return View::make('fixture.test');
}