Created
July 1, 2020 10:36
-
-
Save robzlabz/c161474a16ca943aec216c73b245b15a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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