Skip to content

Instantly share code, notes, and snippets.

@robzlabz
Created July 1, 2020 10:36
Show Gist options
  • Save robzlabz/c161474a16ca943aec216c73b245b15a to your computer and use it in GitHub Desktop.
Save robzlabz/c161474a16ca943aec216c73b245b15a to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class MemberController extends Controller
{
public function index()
{
//
}
public function create()
{
//
}
public function store(Request $request)
{
//
}
public function edit($id)
{
//
}
public function update(Request $request, $id)
{
//
}
public function destroy($id)
{
//
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment