for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Gitamin\Http\Controllers\Groups;
use Illuminate\Http\Request;
use Gitamin\Http\Requests;
use Gitamin\Http\Controllers\Controller;
class GroupController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
//
}
* Show the form for creating a new resource.
public function create()
* Store a newly created resource in storage.
* @param \Illuminate\Http\Request $request
public function store(Request $request)
* Display the specified resource.
* @param int $id
public function show($id)
* Show the form for editing the specified resource.
public function edit($id)
* Update the specified resource in storage.
public function update(Request $request, $id)
* Remove the specified resource from storage.
public function destroy($id)