I now have a link of this type:
Http://www.xxx.com/api/signup
Where the API is the controller Apicontroller
Need to change is signup, it could be signin,create,del,move and so on.
How to write in the route, in order to let the following values correspond to the method of the specified controller
That is, access to the http://www.xxx.com/api/signup corresponding to the signup method under the API controller, similarly signin,create,del,move
Reply content:
I now have a link of this type:
Http://www.xxx.com/api/signup
Where the API is the controller Apicontroller
Need to change is signup, it could be signin,create,del,move and so on.
How to write in the route, in order to let the following values correspond to the method of the specified controller
That is, access to the http://www.xxx.com/api/signup corresponding to the signup method under the API controller, similarly signin,create,del,move
Route::controller (' API ', ' Apicontroller ', [
'signup' => 'api.signup','signin' => 'api.signin','create' => 'api.create','del' => 'api.del','move' => 'api.move',
]);
Class Apicontroller extends Controller
{
public function getSignup(){ return 'index';}public function getSignin(){ return 'create';}..........
}