Skip to content

Commit

Permalink
Merge pull request #165 from Capstone-Projects-2024-Spring/unga
Browse files Browse the repository at this point in the history
Jsonifying is not playing nice again
  • Loading branch information
elijahbigham committed May 7, 2024
2 parents 40ef476 + 4519006 commit a5465ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions colorInSync/app/Http/Controllers/ColorProfileController.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ public function store(StoreColorProfileRequest $request)
public function show()
{
$colorProfile = ColorProfile::latest()->first();
Log::debug($colorProfile->toJson());
return $colorProfile->toJson();
Log::debug($colorProfile);

return $colorProfile;
}

/**
Expand Down

0 comments on commit a5465ef

Please sign in to comment.