for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Gamer\Http\Controllers\Root;
use Gamer\Services\RootService;
class HomeController extends Controller
{
protected $rootService;
public function __construct(RootService $rootService)
parent::__construct();
$this->rootService = $rootService;
}
public function index()
return view('gamer::root.home.index');