Skip to content

Instantly share code, notes, and snippets.

@platoosom
Last active May 30, 2016 10:10
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 platoosom/dd2cf99bf1ae69c81c77a96d85d43930 to your computer and use it in GitHub Desktop.
Save platoosom/dd2cf99bf1ae69c81c77a96d85d43930 to your computer and use it in GitHub Desktop.
<?php
Route::get('question', [
'uses' => 'QuestionController@getIndex',
]);
Route::post('question', [
'uses' => 'QuestionController@postIndex',
]);
Route::put('question/{id}', [
'uses' => 'QuestionController@putIndex',
]);
Route::delete('question/{id}', [
'uses' => 'QuestionController@delete',
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment