for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Controllers;
class ProfileController extends Controller
{
/**
* Create a new controller instance.
*/
public function __construct()
$this->middleware('auth');
}
* Show the application dashboard.
*
* @return Response
public function index()
return view('profile');