Удалить и возвращать ответ и nocontent laravel

public function destroy(Post $post)
{
    $post->delete();
    return response()->noContent();
}
Xanthous Xenomorph