Update the details of a specific designation by ID:
PUT /designations/{id}
{
"name": "Developer",
}
{
"status": "success",
"message": "Designation updated successfully",
"data": {
"id": 1,
"name": "Developer",
"status": 1,
"created_by": 2,
"updated_by": 3,
"created_at": "2021-02-15T12:00:00",
"updated_at": "2022-05-01T12:00:00",
"deleted_at": null
}
}