for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Response;
class HomeController extends Controller
{
/**
* Show the application dashboard.
*
* @return Response
*/
public function index()
return view('home');
}