Laravel 7 - Create 메서드를 사용하는 경우 유지한 직후의 Empty Mandwell Model 개체 다음과 같이 웅변을 통해 새 모델을 생성하는 경우: $appUser = AppUser::create([ 'id' => Str::uuid(), 'name' => $request->name, 'location' => new Point(rand(0,90), rand(0,180)) ]); 그리고, 같은 요청으로, 나는 물체에 이렇게 접근합니다.: $location = $appUser->location; $name = $appUser->name; //I can get this from the request, but I have lots of random fields generated for test ..