79540715

Date: 2025-03-28 06:50:16
Score: 1.5
Natty:
Report link

Along with @Tatachiblob's answer. I have found some other ways to fix this issue.

$response = $this->post(route('categories.store'), [], [
    'accept' => 'application/json',
]);

Or

$response = $this->json('post', route('categories.store'), []);

Hope this will be able to save some time for someone.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Tatachiblob's
  • Self-answer (0.5):
Posted by: Mr.Singh