A little layout change, because why not?

このコミットが含まれているのは:
テクニカル諏訪子 2018-01-24 19:26:00 +09:00
コミット 854a2b33ae
1個のファイルの変更6行の追加1行の削除

ファイルの表示

@ -2,6 +2,8 @@
namespace App\Http\Controllers;
use App\Models\ForUser;
use Illuminate\Support\Facades\DB;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Log;
@ -12,6 +14,9 @@ class UserController extends Controller {
}
public function getUser($id) { // /api/rpc/user/getuser/id
return DB::table('for_users')->select('*')->where('id', $id)->get();
return DB::table('for_users')
->select('*')
->where('id', $id)
->get();
}
}