for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Controllers;
class PageController extends Controller
{
/**
* Return the homepage view
* @return mixed
*/
public function home()
return view('welcome');
}
* Return the api dashboard view listing available apis
public function api()
return view('apidashboard');
* Return the contact page view
public function contact()
return view('contact');