Eliminar y devolver la respuesta y nocontent laravel
public function destroy(Post $post)
{
$post->delete();
return response()->noContent();
}
Xanthous Xenomorph
public function destroy(Post $post)
{
$post->delete();
return response()->noContent();
}