Skip to content

Instantly share code, notes, and snippets.

@matticustard
Created September 14, 2019 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matticustard/607ac1e0e36b22e14c7658c65b94915a to your computer and use it in GitHub Desktop.
Save matticustard/607ac1e0e36b22e14c7658c65b94915a to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers;
use App\Model;
use Illuminate\Http\Request;
class ModelController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Model $model
* @return \Illuminate\Http\Response
*/
public function show(Model $model)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Model $model
* @return \Illuminate\Http\Response
*/
public function edit(Model $model)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\Model $model
* @return \Illuminate\Http\Response
*/
public function update(Request $request, Model $model)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Model $model
* @return \Illuminate\Http\Response
*/
public function destroy(Model $model)
{
//
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment