コード例 #1
0
 public function getMove(Character $character, Location $location, MoveCharacterRequest $request)
 {
     // update character's location
     $character->location()->associate($location)->save();
     return redirect()->route('location.show', compact('location'));
 }