Accessing JSON data in Laravel controller from axios POST

Solution:

You have to decode stringified object

$data = json_decode($request->getContent());

$title       = $data->title;
$description = $data->description;
$hunter      = $data->hunter;
$encryption  = $data->encryption;

Hope this helps.