User controller works.

このコミットが含まれているのは:
テクニカル諏訪子 2018-01-24 05:33:53 +09:00
コミット 7da06e4ee4
2個のファイルの変更6行の追加8行の削除

ファイルの表示

@ -2,19 +2,16 @@
namespace App\Http\Controllers;
use Illuminate\Support\Facades\DB;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Log;
class UserController extends Controller {
public function __contruct() {
// Init SQL.
public function getUsers() { // /api/rpc/user/getusers
return DB::table('for_users')->select('*')->get();
}
public function getUsers() {
// Select all users from the database, and return the results.
}
public function getUser($id) {
// Select a specific user from the database, and return the result.
public function getUser($id) { // /api/rpc/user/getuser/id
return DB::table('for_users')->select('*')->where('id', $id)->get();
}
}

ファイルの表示

@ -47,6 +47,7 @@ Route::get('/api/rpc/permission/getpermissions', 'PermissionsController@getPermi
// Users
Route::get('/api/rpc/user/getusers', 'UserController@getUsers');
Route::get('/api/rpc/user/getuser/{id}', 'UserController@getUser');
/*Route::get('/api/rpc/example/getusers', 'ExampleController@getUsers');
Route::get('/api/rpc/example/getuser/{id}', 'ExampleController@getUser');