find($id); if (!$movie) { throw (new ModelNotFoundException())->setModel(Movie::class, [$id]); } // Hard delete cascades through pivots due to FK cascade in migrations $movie->delete(); } }