How to handle User Registration via API Laravel
问题 I have being reading and watching some tutorials about API development in Laravel. I am new to API development entirely although I have used Laravel a bit. From all the tutorials I have gone through, they handled: login, get some data, update information, delete information, and even insert some information into the database. My problem is that none of this tutorials handle something like a user registration. Route::group(array('prefix' => 'api/v1', 'before' => 'auth.basic'), function() {